scenariotest 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/scenariotest.rb +1 -1
- data/lib/scenariotest/driver.rb +1 -1
- data/scenariotest.gemspec +1 -1
- metadata +1 -1
data/lib/scenariotest.rb
CHANGED
data/lib/scenariotest/driver.rb
CHANGED
@@ -160,7 +160,7 @@ module Scenariotest
|
|
160
160
|
|
161
161
|
objs_identity_map = {}
|
162
162
|
klass_ids_map.each do |klass, ids|
|
163
|
-
klass.constantize.find(ids).each do |obj|
|
163
|
+
klass.constantize.unscoped.find(ids).each do |obj|
|
164
164
|
objs_identity_map["#{klass}_#{obj.id}"] = obj
|
165
165
|
end
|
166
166
|
end
|
data/scenariotest.gemspec
CHANGED