summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/runner/filters/profile_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mspec/spec/runner/filters/profile_spec.rb')
-rw-r--r--spec/mspec/spec/runner/filters/profile_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/mspec/spec/runner/filters/profile_spec.rb b/spec/mspec/spec/runner/filters/profile_spec.rb
index 78807bca5c..89d0ad1911 100644
--- a/spec/mspec/spec/runner/filters/profile_spec.rb
+++ b/spec/mspec/spec/runner/filters/profile_spec.rb
@@ -15,25 +15,25 @@ describe ProfileFilter, "#find" do
@filter.find(@file).should == @file
end
- it "attemps to locate the file in 'spec/profiles'" do
+ it "attempts to locate the file in 'spec/profiles'" do
path = File.join "spec/profiles", @file
File.should_receive(:exist?).with(path).and_return(true)
@filter.find(@file).should == path
end
- it "attemps to locate the file in 'spec'" do
+ it "attempts to locate the file in 'spec'" do
path = File.join "spec", @file
File.should_receive(:exist?).with(path).and_return(true)
@filter.find(@file).should == path
end
- it "attemps to locate the file in 'profiles'" do
+ it "attempts to locate the file in 'profiles'" do
path = File.join "profiles", @file
File.should_receive(:exist?).with(path).and_return(true)
@filter.find(@file).should == path
end
- it "attemps to locate the file in '.'" do
+ it "attempts to locate the file in '.'" do
path = File.join ".", @file
File.should_receive(:exist?).with(path).and_return(true)
@filter.find(@file).should == path