CHANGELOG in remarkable_rails-3.1.0 vs CHANGELOG in remarkable_rails-3.1.1
- old
+ new
@@ -1,4 +1,29 @@
+* mock_models now creates a second class method to be used on the index action [#71]
+ In other words, mock_models :project will create:
+
+ def self.mock_project
+ proc { mock_project }
+ end
+
+ # This was added to be used on index actions
+ def self.mock_projects
+ proc { [ mock_project ] }
+ end
+
+ def mock_project(stubs={})
+ @project ||= mock_model(Project, stubs)
+ end
+
+* Allow multiple args to be given to :with in expects. If you need to verify that
+ an array is being sent, you need to send an array inside another array [#70]
+
+* Allow procs or blocks to be given to respond_with_body and respond_with :body [#67]
+
+* Allow ordered to be given to macro stubs as option [#66]
+
+* Allow multiple methods to be given to expects [#65]
+
# v3.1
* Ensure set_cookies and set_session work with arrays [#55]
* Added set_cookies matcher [#51]