test/dummy/vendor/wagons/superliner/test/models/city_test.rb in wagons-0.2.2 vs test/dummy/vendor/wagons/superliner/test/models/city_test.rb in wagons-0.3.0

- old
+ new

@@ -1,12 +1,12 @@ require 'test_helper' class CityTest < ActiveSupport::TestCase - test "city without name is invalid" do + test 'city without name is invalid' do city = City.new assert !city.valid? end - - test "fixtures from wagon are loaded" do + + test 'fixtures from wagon are loaded' do assert_equal 'London', cities(:london).name end end