Introduction
Introduction Statistics Contact Development Disclaimer Help
projects_spec.rb - warvox - VoIP based wardialing tool, forked from rapid7/warv…
git clone git://jay.scot/warvox
Log
Files
Refs
README
---
projects_spec.rb (705B)
---
1 require 'rails_helper'
2
3 RSpec.feature "Projects", type: :feature do
4
5 before(:each) do
6 @user = create(:user)
7 create_user_session(@user)
8 end
9
10 it "list all existing projects" do
11 project = create(:project)
12 visit projects_path
13 expect(page).to have_content "WarVOX Projects"
14 within "#projects-table" do
15 expect(page).to have_content "Name"
16 expect(page).to have_content "Description"
17 expect(page).to have_content "Jobs"
18 expect(page).to have_content "Calls"
19 expect(page).to have_content "Analyzed"
20 expect(page).to have_content "Created"
21 expect(page).to have_content "Actions"
22 expect(page).to have_content project.name
23 end
24 end
25 end
You are viewing proxied material from jay.scot. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.