Merge pull request #62 from pozorvlak/pending_tests

Remove "pending" tests to clean up rspec output
This commit is contained in:
Skud
2012-12-10 17:29:55 -08:00
6 changed files with 7 additions and 66 deletions

View File

@@ -1,15 +0,0 @@
require 'spec_helper'
# Specs in this file have access to a helper object that includes
# the CropsHelper. For example:
#
# describe CropsHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# helper.concat_strings("this","that").should == "this that"
# end
# end
# end
describe CropsHelper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,15 +0,0 @@
require 'spec_helper'
# Specs in this file have access to a helper object that includes
# the GardensHelper. For example:
#
# describe GardensHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# helper.concat_strings("this","that").should == "this that"
# end
# end
# end
describe GardensHelper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,15 +0,0 @@
require 'spec_helper'
# Specs in this file have access to a helper object that includes
# the ScientificNamesHelper. For example:
#
# describe ScientificNamesHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# helper.concat_strings("this","that").should == "this that"
# end
# end
# end
describe ScientificNamesHelper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,15 +0,0 @@
require 'spec_helper'
# Specs in this file have access to a helper object that includes
# the UpdatesHelper. For example:
#
# describe UpdatesHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# helper.concat_strings("this","that").should == "this that"
# end
# end
# end
describe UpdatesHelper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -1,5 +1,11 @@
require 'spec_helper'
describe Garden do
pending "add some examples to (or delete) #{__FILE__}"
it "should have a slug" do
user = mock_model(User)
user.stub!(:username).and_return("test1")
garden = Garden.new(:name => "my garden")
garden.user = user
garden.garden_slug.should == "test1-my garden"
end
end

View File

@@ -1,5 +0,0 @@
require 'spec_helper'
describe ScientificName do
pending "add some examples to (or delete) #{__FILE__}"
end