aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/info_request_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/info_request_spec.rb')
-rw-r--r--spec/models/info_request_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/models/info_request_spec.rb b/spec/models/info_request_spec.rb
index 09b258ee4..4948af9e9 100644
--- a/spec/models/info_request_spec.rb
+++ b/spec/models/info_request_spec.rb
@@ -167,17 +167,17 @@ describe InfoRequest do
@info_request = InfoRequest.new
end
- it 'should return true if it\'s described state is error_message' do
+ it 'should return true if its described state is error_message' do
@info_request.described_state = 'error_message'
@info_request.requires_admin?.should be_true
end
- it 'should return true if it\'s described state is requires_admin' do
+ it 'should return true if its described state is requires_admin' do
@info_request.described_state = 'requires_admin'
@info_request.requires_admin?.should be_true
end
- it 'should return false if it\'s described state is waiting_response' do
+ it 'should return false if its described state is waiting_response' do
@info_request.described_state = 'waiting_response'
@info_request.requires_admin?.should be_false
end
@@ -247,7 +247,7 @@ describe InfoRequest do
@info_request.is_old_unclassified?.should be_false
end
- it 'should return false if it\'s last response event occurred less than 14 days ago' do
+ it 'should return false if its last response event occurred less than 14 days ago' do
@mock_response_event.stub!(:created_at).and_return(Time.now - 13.days)
@info_request.is_old_unclassified?.should be_false
end