box-o-sand/rails/map-mash/spec/views/mash_tournaments/show.html.erb_spec.rb

13 lines
262 B
Ruby
Raw Normal View History

require 'spec_helper'
describe "/mash_tournaments/show.html.erb" do
include MashTournamentsHelper
before(:each) do
assigns[:mash_tournament] = @mash_tournament = stub_model(MashTournament)
end
it "renders attributes in <p>" do
render
end
end