test/unit/rake_task_test.rb in rails-erd-0.3.0 vs test/unit/rake_task_test.rb in rails-erd-0.4.0
- old
+ new
@@ -65,10 +65,10 @@
Rake::Task["erd:options"].execute
assert_equal true, RailsERD.options.title
end
test "options task should set known array command line options" do
- ENV["attributes"] = "regular,timestamps"
+ ENV["attributes"] = "content,timestamps"
Rake::Task["erd:options"].execute
- assert_equal [:regular, :timestamps], RailsERD.options.attributes
+ assert_equal [:content, :timestamps], RailsERD.options.attributes
end
end