Created
August 16, 2016 20:59
-
-
Save gotchahn/80875898f86c42f06ada3185d1739c75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe "Rio 2016", :type => :feature do | |
let(:h_sub23){ Honduras.new } | |
describe "Honduras" do | |
it "debe pasar de la fase de grupos" do | |
visit rio_path | |
expect(h_sub23.goles).to be > 1 | |
expect(h_sub23).to be_primeros_2 | |
end | |
it "debe clasificar a semifinales" do | |
visit cuartos_de_final_en_rio_path | |
expect(h_sub23).to be_semifinalista | |
end | |
it "ganar una medalla" do | |
visit rio_path | |
expect(h_sub23).to be_medallista | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment