v1.0
This commit is contained in:
parent
0f43e98ef8
commit
d378468794
317 changed files with 11347 additions and 0 deletions
34
spec/requests/top_panel_spec.rb
Normal file
34
spec/requests/top_panel_spec.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe "Top Panel", :js => true do
|
||||
before { login_as :user }
|
||||
|
||||
describe "Search autocomplete" do
|
||||
before do
|
||||
visit projects_path
|
||||
fill_in "search", :with => "Ke"
|
||||
sleep(2)
|
||||
find(:xpath, "//ul[contains(@class,'ui-autocomplete')]/li/a[.=\"Keys\"]").click
|
||||
end
|
||||
|
||||
it "should be on projects page" do
|
||||
current_path.should == keys_path
|
||||
end
|
||||
end
|
||||
|
||||
describe "with project" do
|
||||
before do
|
||||
@project = Factory :project
|
||||
@project.add_access(@user, :read)
|
||||
visit project_path(@project)
|
||||
|
||||
fill_in "search", :with => "Commi"
|
||||
sleep(2)
|
||||
find(:xpath, "//ul[contains(@class,'ui-autocomplete')]/li/a[.=\"#{@project.code} / Commits\"]").click
|
||||
end
|
||||
|
||||
it "should be on projects page" do
|
||||
current_path.should == project_commits_path(@project)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue