summaryrefslogtreecommitdiff
path: root/users/test/support/stub_record_helper.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-11-23 11:00:32 +0100
committerAzul <azul@leap.se>2012-11-23 11:00:32 +0100
commit716dc248e940be8bd323a9d92f98785737fc99a0 (patch)
treedebf0bcb697bfdf29d1710096752e3c6d94d4f79 /users/test/support/stub_record_helper.rb
parentddd53a0841cb2af091e1ed3a6e69e9fc52977c08 (diff)
parent46c0140a8eab632c783d309a7afd87cb7aad4280 (diff)
Merge branch 'feature/users-change-passwords' into develop
Diffstat (limited to 'users/test/support/stub_record_helper.rb')
-rw-r--r--users/test/support/stub_record_helper.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/users/test/support/stub_record_helper.rb b/users/test/support/stub_record_helper.rb
new file mode 100644
index 0000000..95b9d63
--- /dev/null
+++ b/users/test/support/stub_record_helper.rb
@@ -0,0 +1,18 @@
+module StubRecordHelper
+
+ # Create a stub that has the usual functions of a database record.
+ # It won't fail on rendering a form for example.
+ def stub_record(klass, params = {}, persisted = true)
+ if klass.respond_to?(:valid_attributes_hash)
+ params.reverse_merge!(klass.valid_attributes_hash)
+ end
+ params[:params] = params.stringify_keys
+ params.reverse_merge! :id => 123,
+ :class => klass,
+ :to_key => ['123'],
+ :new_record? => !persisted,
+ :persisted? => persisted
+ stub params
+ end
+
+end