7754189187
Didn't bother with files in db/, config/, or features/
18 lines
351 B
Ruby
18 lines
351 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Search" do
|
|
before do
|
|
login_as :user
|
|
@project = Factory :project
|
|
@project.add_access(@user, :read)
|
|
visit search_path
|
|
fill_in "search", with: @project.name[0..3]
|
|
click_button "Search"
|
|
end
|
|
|
|
it "should show project in search results" do
|
|
page.should have_content @project.name
|
|
end
|
|
end
|
|
|