adds mongoid support

This commit is contained in:
Sidney Burks 2010-04-13 09:50:25 -06:00 committed by Ben Mabey
parent e09588b15c
commit b18f9b7f57
7 changed files with 149 additions and 3 deletions

View file

@ -17,4 +17,5 @@ Feature: database cleaning
| DataMapper | transaction |
| DataMapper | truncation |
| MongoMapper | truncation |
| Mongoid | truncation |
| CouchPotato | truncation |

View file

@ -1,4 +1,4 @@
Given /^I am using (ActiveRecord|DataMapper|MongoMapper|CouchPotato)$/ do |orm|
Given /^I am using (ActiveRecord|DataMapper|MongoMapper|Mongoid|CouchPotato)$/ do |orm|
@orm = orm
end