Created
October 30, 2012 11:20
-
-
Save lessless/3979682 to your computer and use it in GitHub Desktop.
route not found
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#encoding:utf-8 | |
require 'spec_helper' | |
describe Front::BanksController do | |
before :all do | |
@bank = Bank.create!(:name => 'ПУ БАНКА РОССИИ N 10462', :bic => '040009002') | |
end | |
it "should perform search by name" do | |
post 'front/banks/search', :params => { :term => @bank.name } | |
response.code.should == "200" | |
binding.pry | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bank.blueprint do | |
bic { rand(9) } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment