Removing specs that accidentally got in here

This commit is contained in:
Will Marshall
2014-05-01 17:46:00 +10:00
parent 0956aa2532
commit c5e6b24779
2 changed files with 0 additions and 23 deletions

View File

@@ -1,8 +0,0 @@
require 'spec_helper'
describe ProducersController do
it "gets all active producers" do
Enterprise.stub_chain(:active)
get :index
end
end

View File

@@ -1,15 +0,0 @@
require 'spec_helper'
feature %q{
As a consumer
I want to see a list of producers
So that I can shop at hubs distributing their products
} do
include UIComponentHelper
let!(:producer) { create(:supplier_enterprise) }
it "shows all producers" do
visit producers_path
page.should have_content producer.name
end
end