Commit ef9f1a79ab6825f235811fb5e27db7fa0f2f4058

Authored by Rodrigo Souto
1 parent d544cfb6

Removing obsolete test

Showing 1 changed file with 0 additions and 7 deletions   Show diff stats
test/functional/catalog_controller_test.rb
... ... @@ -72,13 +72,6 @@ class CatalogControllerTest < ActionController::TestCase
72 72 assert_tag :tag => 'span', :attributes => { :class => 'product-price with-discount' }, :content => /50.00/
73 73 end
74 74  
75   - should 'add an zero width space every 4 caracters of comment urls' do
76   - url = 'www.an.url.to.be.splited.com'
77   - prod = @enterprise.products.create!(:name => 'Product test', :price => 50.00, :product_category => @product_category, :description => url)
78   - get :index, :profile => @enterprise.identifier
79   - assert_tag :a, :attributes => { :href => "http://" + url}, :content => url.scan(/.{4}/).join('​')
80   - end
81   -
82 75 should 'show action moved to manage_products controller' do
83 76 assert_raise ActionController::RoutingError do
84 77 get :show, :id => 1
... ...