aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2011-03-12 21:45:17 +0200
committerPetteri Räty <betelgeuse@gentoo.org>2011-03-12 21:45:17 +0200
commit58b9bac5246073719cffb8c9ce64eaa181ca9cd1 (patch)
treedf4ba6c3c74de963ed274f34125e3d8f1384b311
parentPreserve existing categories (diff)
downloadrecruiting-webapp-58b9bac5246073719cffb8c9ce64eaa181ca9cd1.tar.gz
recruiting-webapp-58b9bac5246073719cffb8c9ce64eaa181ca9cd1.tar.bz2
recruiting-webapp-58b9bac5246073719cffb8c9ce64eaa181ca9cd1.zip
Typo fixes
-rw-r--r--spec/models/question_spec.rb2
-rw-r--r--spec/models/user_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/question_spec.rb b/spec/models/question_spec.rb
index 99a286f..3d55415 100644
--- a/spec/models/question_spec.rb
+++ b/spec/models/question_spec.rb
@@ -163,7 +163,7 @@ describe Question do
question.should_not be_editable_by(recruit, :approved)
end
- it "should allow admin to edit all attributes execpt user" do
+ it "should allow admin to edit all attributes except user" do
admin = Factory(:administrator)
question = Factory(:question, :user => Factory(:recruit))
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index b4a3dbf..02cc24a 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -303,7 +303,7 @@ describe User do
Factory(:administrator).questions_to_approve.should == [q]
end
- it "should properly recognie if user answera all multiple choice questions" do
+ it "should properly recognize if user answera all multiple choice questions" do
recruit = Factory(:recruit)
recruit.answered_all_multi_choice_questions?.should be_true