17 lines
378 B
Ruby
17 lines
378 B
Ruby
require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
|
|
|
|
RAILS_ROOT = "." unless defined?(RAILS_ROOT)
|
|
|
|
describe "reloads" do
|
|
before do
|
|
@session = Webrat::TestSession.new
|
|
@session.response_body = "Hello world"
|
|
end
|
|
|
|
it "should reload the page" do
|
|
@session.expects(:get).with("/", {}).times(2)
|
|
@session.visits("/")
|
|
@session.reloads
|
|
end
|
|
end
|