Skip to content

Instantly share code, notes, and snippets.

@gotchahn
Created August 16, 2016 20:59
Show Gist options
  • Save gotchahn/80875898f86c42f06ada3185d1739c75 to your computer and use it in GitHub Desktop.
Save gotchahn/80875898f86c42f06ada3185d1739c75 to your computer and use it in GitHub Desktop.
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