aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/request_game_controller_spec.rb
blob: c3f00d58df4a9559d193c4da951f00537d6efb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- encoding : utf-8 -*-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe RequestGameController, "when playing the game" do
    before(:each) do
        load_raw_emails_data
    end

    it "should show the game homepage" do
        get :play
        response.should render_template('play')
    end
end