diff options
| author | Robert | 2017-05-31 15:00:45 +0200 |
|---|---|---|
| committer | Robert | 2017-05-31 15:00:45 +0200 |
| commit | b561d04020be9015b2eea88e92c6eedc1f529d53 (patch) | |
| tree | a1fb8c52f69e2bc15a4a59f39266a102a121602b | |
| parent | 203b94aac86fc18ccb68885dea188a972cea870d (diff) | |
| download | chouette-core-b561d04020be9015b2eea88e92c6eedc1f529d53.tar.bz2 | |
hotfix invalid spec (missing field route_public_name)
| -rw-r--r-- | spec/features/routes_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/features/routes_spec.rb b/spec/features/routes_spec.rb index 6d9ba990d..7be506b57 100644 --- a/spec/features/routes_spec.rb +++ b/spec/features/routes_spec.rb @@ -36,10 +36,12 @@ describe "Routes", :type => :feature do visit referential_line_path(referential, line) click_link "Ajouter un itinéraire" fill_in "route_name", :with => "A to B" - # select 'Aller', :from => "route_direction" + fill_in "route_published_name", :with => "Published A to B" check('route[wayback]') click_button("Valider") expect(page).to have_content("A to B") + expect(page).to have_content("Published A to B") + end end |
