introspective_admin 0.0.6 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.DS_Store +0 -0
- data/.ruby-version +1 -0
- data/.travis.yml +16 -9
- data/CHANGELOG.md +28 -8
- data/Gemfile +6 -6
- data/Gemfile.lock +264 -247
- data/Gemfile.lock.rails4 +256 -0
- data/introspective_admin.gemspec +44 -41
- data/lib/introspective_admin/base.rb +200 -184
- data/lib/introspective_admin/version.rb +3 -3
- data/spec/admin/company_admin_spec.rb +72 -72
- data/spec/admin/job_admin_spec.rb +61 -61
- data/spec/admin/location_admin_spec.rb +66 -66
- data/spec/admin/location_beacon_admin_spec.rb +73 -73
- data/spec/admin/project__admin_spec.rb +71 -71
- data/spec/admin/user_admin_spec.rb +64 -64
- data/spec/dummy/README.rdoc +28 -28
- data/spec/dummy/Rakefile +6 -6
- data/spec/dummy/app/admin/company_admin.rb +4 -4
- data/spec/dummy/app/admin/job_admin.rb +4 -4
- data/spec/dummy/app/admin/location_admin.rb +4 -4
- data/spec/dummy/app/admin/location_beacon_admin.rb +6 -6
- data/spec/dummy/app/admin/project_admin.rb +6 -6
- data/spec/dummy/app/admin/role_admin.rb +5 -5
- data/spec/dummy/app/admin/user_admin.rb +13 -13
- data/spec/dummy/app/assets/javascripts/application.js +13 -13
- data/spec/dummy/app/assets/stylesheets/application.css +15 -15
- data/spec/dummy/app/controllers/application_controller.rb +8 -5
- data/spec/dummy/app/helpers/application_helper.rb +3 -2
- data/spec/dummy/app/models/abstract_adapter.rb +12 -12
- data/spec/dummy/app/models/admin_user.rb +6 -6
- data/spec/dummy/app/models/company.rb +12 -12
- data/spec/dummy/app/models/job.rb +10 -10
- data/spec/dummy/app/models/locatable.rb +6 -6
- data/spec/dummy/app/models/location.rb +26 -26
- data/spec/dummy/app/models/location_beacon.rb +19 -19
- data/spec/dummy/app/models/location_gps.rb +11 -11
- data/spec/dummy/app/models/project.rb +20 -20
- data/spec/dummy/app/models/project_job.rb +7 -7
- data/spec/dummy/app/models/role.rb +25 -25
- data/spec/dummy/app/models/team.rb +9 -9
- data/spec/dummy/app/models/team_user.rb +13 -13
- data/spec/dummy/app/models/user.rb +68 -68
- data/spec/dummy/app/models/user_location.rb +28 -28
- data/spec/dummy/app/models/user_project_job.rb +16 -16
- data/spec/dummy/app/views/layouts/application.html.erb +13 -13
- data/spec/dummy/bin/bundle +3 -3
- data/spec/dummy/bin/rails +4 -4
- data/spec/dummy/bin/rake +4 -4
- data/spec/dummy/bin/setup +29 -29
- data/spec/dummy/config/application.rb +34 -32
- data/spec/dummy/config/boot.rb +5 -5
- data/spec/dummy/config/database.yml +22 -22
- data/spec/dummy/config/environment.rb +11 -11
- data/spec/dummy/config/environments/development.rb +45 -41
- data/spec/dummy/config/environments/production.rb +82 -79
- data/spec/dummy/config/environments/test.rb +50 -43
- data/spec/dummy/config/initializers/active_admin.rb +7 -7
- data/spec/dummy/config/initializers/assets.rb +13 -11
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -3
- data/spec/dummy/config/initializers/devise.rb +263 -263
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
- data/spec/dummy/config/initializers/inflections.rb +16 -16
- data/spec/dummy/config/initializers/mime_types.rb +4 -4
- data/spec/dummy/config/initializers/session_store.rb +3 -3
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
- data/spec/dummy/config/locales/devise.en.yml +60 -60
- data/spec/dummy/config/locales/en.yml +23 -23
- data/spec/dummy/config/routes.rb +9 -9
- data/spec/dummy/config/secrets.yml +20 -20
- data/spec/dummy/config.ru +4 -4
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +42 -42
- data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +48 -48
- data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +19 -19
- data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +8 -8
- data/spec/dummy/db/migrate/20150406213646_create_companies.rb +11 -11
- data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +11 -11
- data/spec/dummy/db/migrate/20150415222005_create_roles.rb +12 -12
- data/spec/dummy/db/migrate/20150505181635_create_chats.rb +9 -9
- data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +11 -11
- data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +11 -11
- data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +11 -11
- data/spec/dummy/db/migrate/20150601200526_create_locations.rb +13 -13
- data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +10 -10
- data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +16 -16
- data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +12 -12
- data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +14 -14
- data/spec/dummy/db/migrate/20150617232519_create_projects.rb +10 -10
- data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +9 -9
- data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +11 -11
- data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +12 -12
- data/spec/dummy/db/migrate/20150701234929_create_teams.rb +11 -11
- data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +11 -11
- data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +11 -11
- data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +6 -6
- data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +5 -5
- data/spec/dummy/db/schema.rb +264 -264
- data/spec/dummy/public/404.html +67 -67
- data/spec/dummy/public/422.html +67 -67
- data/spec/dummy/public/500.html +66 -66
- data/spec/rails_helper.rb +27 -24
- metadata +84 -12
@@ -1,66 +1,66 @@
|
|
1
|
-
require 'rails_helper'
|
2
|
-
|
3
|
-
RSpec.describe Admin::LocationsController, :type => :controller do
|
4
|
-
render_views
|
5
|
-
|
6
|
-
before :each do # Why can't I do this shit in a helper like I do for requests?
|
7
|
-
user = double('user')
|
8
|
-
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
-
allow(controller).to receive(:current_user) { user }
|
10
|
-
end
|
11
|
-
|
12
|
-
describe "GET index" do
|
13
|
-
it "finds all locations" do
|
14
|
-
c = Location.make!
|
15
|
-
get :index
|
16
|
-
response.status.should == 200
|
17
|
-
assigns(:locations).include?(c).should == true
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
describe "SHOW record" do
|
22
|
-
it "finds the record" do
|
23
|
-
c = Location.make!
|
24
|
-
get :show, id: c.id
|
25
|
-
response.status.should == 200
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
describe "NEW record" do
|
30
|
-
# will fail until https://github.com/activeadmin/activeadmin/pull/4010 is merged
|
31
|
-
it "renders the form for a new record" do
|
32
|
-
get :new
|
33
|
-
response.body.should =~ /location\[unreflected_id\]/
|
34
|
-
response.status.should == 200
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
describe "CREATE record" do
|
39
|
-
it "creates the record" do
|
40
|
-
c = Location.make
|
41
|
-
gps = LocationGps.make
|
42
|
-
post :create, location: c.attributes.merge(gps_attributes: gps.attributes)
|
43
|
-
response.should redirect_to action: :show, id: Location.last.id
|
44
|
-
Location.last.name.should == c.name
|
45
|
-
Location.last.gps.lat.round(10).should == gps.lat.round(10)
|
46
|
-
Location.last.gps.lng.round(10).should == gps.lng.round(10)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe "EDIT record" do
|
51
|
-
it "renders the edit form for an existing record" do
|
52
|
-
r = Location.make!
|
53
|
-
get :edit, id: r.id
|
54
|
-
response.status.should == 200
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
describe "UPDATE record" do
|
59
|
-
it "updates the record" do
|
60
|
-
r = Location.make!
|
61
|
-
put :update, id: r.id, location: { name: "New Name" }
|
62
|
-
response.should redirect_to action: :show, id: r.id
|
63
|
-
Location.find(r.id).name.should == "New Name"
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Admin::LocationsController, :type => :controller do
|
4
|
+
render_views
|
5
|
+
|
6
|
+
before :each do # Why can't I do this shit in a helper like I do for requests?
|
7
|
+
user = double('user')
|
8
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
+
allow(controller).to receive(:current_user) { user }
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "GET index" do
|
13
|
+
it "finds all locations" do
|
14
|
+
c = Location.make!
|
15
|
+
get :index
|
16
|
+
response.status.should == 200
|
17
|
+
assigns(:locations).include?(c).should == true
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "SHOW record" do
|
22
|
+
it "finds the record" do
|
23
|
+
c = Location.make!
|
24
|
+
get :show, params: { id: c.id }
|
25
|
+
response.status.should == 200
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "NEW record" do
|
30
|
+
# will fail until https://github.com/activeadmin/activeadmin/pull/4010 is merged
|
31
|
+
it "renders the form for a new record" do
|
32
|
+
get :new
|
33
|
+
response.body.should =~ /location\[unreflected_id\]/
|
34
|
+
response.status.should == 200
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "CREATE record" do
|
39
|
+
it "creates the record" do
|
40
|
+
c = Location.make
|
41
|
+
gps = LocationGps.make
|
42
|
+
post :create, params: { location: c.attributes.merge(gps_attributes: gps.attributes) }
|
43
|
+
response.should redirect_to action: :show, id: Location.last.id
|
44
|
+
Location.last.name.should == c.name
|
45
|
+
Location.last.gps.lat.round(10).should == gps.lat.round(10)
|
46
|
+
Location.last.gps.lng.round(10).should == gps.lng.round(10)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "EDIT record" do
|
51
|
+
it "renders the edit form for an existing record" do
|
52
|
+
r = Location.make!
|
53
|
+
get :edit, params: { id: r.id }
|
54
|
+
response.status.should == 200
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe "UPDATE record" do
|
59
|
+
it "updates the record" do
|
60
|
+
r = Location.make!
|
61
|
+
put :update, params: { id: r.id, location: { name: "New Name" } }
|
62
|
+
response.should redirect_to action: :show, id: r.id
|
63
|
+
Location.find(r.id).name.should == "New Name"
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -1,73 +1,73 @@
|
|
1
|
-
require 'rails_helper'
|
2
|
-
|
3
|
-
RSpec.describe Admin::LocationBeaconsController, :type => :controller do
|
4
|
-
render_views
|
5
|
-
|
6
|
-
before :each do # Why can't I do this shit in a helper like I do for requests?
|
7
|
-
user = double('user')
|
8
|
-
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
-
allow(controller).to receive(:current_user) { user }
|
10
|
-
end
|
11
|
-
|
12
|
-
describe "GET index" do
|
13
|
-
it "finds all location beacons" do
|
14
|
-
c = LocationBeacon.make!(last_known_battery_level: 50)
|
15
|
-
d = LocationBeacon.make!(last_known_battery_level: 4)
|
16
|
-
get :index
|
17
|
-
response.status.should == 200
|
18
|
-
assigns(:location_beacons).include?(c).should == true
|
19
|
-
assigns(:location_beacons).include?(d).should == true
|
20
|
-
end
|
21
|
-
|
22
|
-
it "scopes location beacons by low battery level" do
|
23
|
-
c = LocationBeacon.make!(last_known_battery_level: 50)
|
24
|
-
d = LocationBeacon.make!(last_known_battery_level: 4)
|
25
|
-
get :index, { scope: 'low_battery' }
|
26
|
-
response.status.should == 200
|
27
|
-
assigns(:location_beacons).include?(c).should == false
|
28
|
-
assigns(:location_beacons).include?(d).should == true
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
describe "SHOW record" do
|
33
|
-
it "finds the record" do
|
34
|
-
c = LocationBeacon.make!
|
35
|
-
get :show, id: c.id
|
36
|
-
response.status.should == 200
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
describe "NEW record" do
|
41
|
-
# will fail until https://github.com/activeadmin/activeadmin/pull/4010 is merged
|
42
|
-
it "renders the form for a new record" do
|
43
|
-
get :new
|
44
|
-
response.status.should == 200
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
describe "CREATE record" do
|
49
|
-
it "creates the record" do
|
50
|
-
c = LocationBeacon.make
|
51
|
-
post :create, location_beacon: c.attributes
|
52
|
-
response.should redirect_to action: :show, id: LocationBeacon.last.id
|
53
|
-
LocationBeacon.last.mac_address.should =~ /#{c.mac_address}/i
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
describe "EDIT record" do
|
58
|
-
it "renders the edit form for an existing record" do
|
59
|
-
r = LocationBeacon.make!
|
60
|
-
get :edit, id: r.id
|
61
|
-
response.status.should == 200
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe "UPDATE record" do
|
66
|
-
it "updates the record" do
|
67
|
-
r = LocationBeacon.make!
|
68
|
-
put :update, id: r.id, location_beacon: { last_known_battery_level: 30 }
|
69
|
-
response.should redirect_to action: :show, id: r.id
|
70
|
-
LocationBeacon.find(r.id).last_known_battery_level.should == 30
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Admin::LocationBeaconsController, :type => :controller do
|
4
|
+
render_views
|
5
|
+
|
6
|
+
before :each do # Why can't I do this shit in a helper like I do for requests?
|
7
|
+
user = double('user')
|
8
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
+
allow(controller).to receive(:current_user) { user }
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "GET index" do
|
13
|
+
it "finds all location beacons" do
|
14
|
+
c = LocationBeacon.make!(last_known_battery_level: 50)
|
15
|
+
d = LocationBeacon.make!(last_known_battery_level: 4)
|
16
|
+
get :index
|
17
|
+
response.status.should == 200
|
18
|
+
assigns(:location_beacons).include?(c).should == true
|
19
|
+
assigns(:location_beacons).include?(d).should == true
|
20
|
+
end
|
21
|
+
|
22
|
+
it "scopes location beacons by low battery level" do
|
23
|
+
c = LocationBeacon.make!(last_known_battery_level: 50)
|
24
|
+
d = LocationBeacon.make!(last_known_battery_level: 4)
|
25
|
+
get :index, params: { scope: 'low_battery' }
|
26
|
+
response.status.should == 200
|
27
|
+
assigns(:location_beacons).include?(c).should == false
|
28
|
+
assigns(:location_beacons).include?(d).should == true
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
describe "SHOW record" do
|
33
|
+
it "finds the record" do
|
34
|
+
c = LocationBeacon.make!
|
35
|
+
get :show, params: { id: c.id }
|
36
|
+
response.status.should == 200
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "NEW record" do
|
41
|
+
# will fail until https://github.com/activeadmin/activeadmin/pull/4010 is merged
|
42
|
+
it "renders the form for a new record" do
|
43
|
+
get :new
|
44
|
+
response.status.should == 200
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "CREATE record" do
|
49
|
+
it "creates the record" do
|
50
|
+
c = LocationBeacon.make
|
51
|
+
post :create, params: { location_beacon: c.attributes }
|
52
|
+
response.should redirect_to action: :show, id: LocationBeacon.last.id
|
53
|
+
LocationBeacon.last.mac_address.should =~ /#{c.mac_address}/i
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "EDIT record" do
|
58
|
+
it "renders the edit form for an existing record" do
|
59
|
+
r = LocationBeacon.make!
|
60
|
+
get :edit, params: { id: r.id }
|
61
|
+
response.status.should == 200
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe "UPDATE record" do
|
66
|
+
it "updates the record" do
|
67
|
+
r = LocationBeacon.make!
|
68
|
+
put :update, params: { id: r.id, location_beacon: { last_known_battery_level: 30 } }
|
69
|
+
response.should redirect_to action: :show, id: r.id
|
70
|
+
LocationBeacon.find(r.id).last_known_battery_level.should == 30
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -1,71 +1,71 @@
|
|
1
|
-
require 'rails_helper'
|
2
|
-
RSpec.describe Admin::ProjectsController, :type => :controller do
|
3
|
-
render_views
|
4
|
-
|
5
|
-
before :each do # Why can't I do this shit in a helper like I do for requests?
|
6
|
-
user = double('user')
|
7
|
-
allow(request.env['warden']).to receive(:authenticate!) { user }
|
8
|
-
allow(controller).to receive(:current_user) { user }
|
9
|
-
end
|
10
|
-
|
11
|
-
describe "GET index" do
|
12
|
-
it "finds all projects" do
|
13
|
-
r = Project.make!
|
14
|
-
get :index
|
15
|
-
response.status.should == 200
|
16
|
-
assigns(:projects).include?(r).should == true
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe "SHOW record" do
|
21
|
-
it "finds the record" do
|
22
|
-
r = Project.make!
|
23
|
-
get :show, id: r.id
|
24
|
-
response.status.should == 200
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
describe "NEW record" do
|
29
|
-
it "renders the form for a new record" do
|
30
|
-
get :new
|
31
|
-
response.status.should == 200
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
describe "CREATE record" do
|
36
|
-
it "creates the record" do
|
37
|
-
r = Project.make
|
38
|
-
post :create, project: r.attributes
|
39
|
-
response.should redirect_to action: :show, id: Project.last.id
|
40
|
-
Project.last.name.should == r.name
|
41
|
-
end
|
42
|
-
|
43
|
-
it "the inverse_of declaration allows a new project to be created with a project_job" do
|
44
|
-
j = Job.make!
|
45
|
-
r = Project.make
|
46
|
-
post :create, project: r.attributes.merge({project_jobs_attributes:{'0'=>{job_id: j.id}}})
|
47
|
-
p = Project.last
|
48
|
-
p.name.should == r.name
|
49
|
-
p.project_jobs.size.should == 1
|
50
|
-
p.project_jobs.first.job.should == j
|
51
|
-
end
|
52
|
-
|
53
|
-
end
|
54
|
-
|
55
|
-
describe "EDIT record" do
|
56
|
-
it "renders the edit form for an existing record" do
|
57
|
-
r = Project.make!
|
58
|
-
get :edit, id: r.id
|
59
|
-
response.status.should == 200
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe "UPDATE record" do
|
64
|
-
it "updates the record" do
|
65
|
-
r = Project.make!
|
66
|
-
put :update, id: r.id, project: { name: "New Name" }
|
67
|
-
response.should redirect_to action: :show, id: r.id
|
68
|
-
Project.find(r.id).name.should == "New Name"
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
1
|
+
require 'rails_helper'
|
2
|
+
RSpec.describe Admin::ProjectsController, :type => :controller do
|
3
|
+
render_views
|
4
|
+
|
5
|
+
before :each do # Why can't I do this shit in a helper like I do for requests?
|
6
|
+
user = double('user')
|
7
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
8
|
+
allow(controller).to receive(:current_user) { user }
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "GET index" do
|
12
|
+
it "finds all projects" do
|
13
|
+
r = Project.make!
|
14
|
+
get :index
|
15
|
+
response.status.should == 200
|
16
|
+
assigns(:projects).include?(r).should == true
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "SHOW record" do
|
21
|
+
it "finds the record" do
|
22
|
+
r = Project.make!
|
23
|
+
get :show, params: { id: r.id }
|
24
|
+
response.status.should == 200
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "NEW record" do
|
29
|
+
it "renders the form for a new record" do
|
30
|
+
get :new
|
31
|
+
response.status.should == 200
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe "CREATE record" do
|
36
|
+
it "creates the record" do
|
37
|
+
r = Project.make
|
38
|
+
post :create, params: { project: r.attributes }
|
39
|
+
response.should redirect_to action: :show, id: Project.last.id
|
40
|
+
Project.last.name.should == r.name
|
41
|
+
end
|
42
|
+
|
43
|
+
it "the inverse_of declaration allows a new project to be created with a project_job" do
|
44
|
+
j = Job.make!
|
45
|
+
r = Project.make
|
46
|
+
post :create, params: { project: r.attributes.merge({project_jobs_attributes:{'0'=>{job_id: j.id}}}) }
|
47
|
+
p = Project.last
|
48
|
+
p.name.should == r.name
|
49
|
+
p.project_jobs.size.should == 1
|
50
|
+
p.project_jobs.first.job.should == j
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
describe "EDIT record" do
|
56
|
+
it "renders the edit form for an existing record" do
|
57
|
+
r = Project.make!
|
58
|
+
get :edit, params: { id: r.id }
|
59
|
+
response.status.should == 200
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe "UPDATE record" do
|
64
|
+
it "updates the record" do
|
65
|
+
r = Project.make!
|
66
|
+
put :update, params: { id: r.id, project: { name: "New Name" } }
|
67
|
+
response.should redirect_to action: :show, id: r.id
|
68
|
+
Project.find(r.id).name.should == "New Name"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -1,64 +1,64 @@
|
|
1
|
-
require 'rails_helper'
|
2
|
-
|
3
|
-
RSpec.describe Admin::UsersController, :type => :controller do
|
4
|
-
render_views
|
5
|
-
|
6
|
-
before :each do
|
7
|
-
user = double('user')
|
8
|
-
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
-
allow(controller).to receive(:current_user) { user }
|
10
|
-
end
|
11
|
-
|
12
|
-
describe "GET index" do
|
13
|
-
it "finds all users" do
|
14
|
-
u = User.make!
|
15
|
-
get :index
|
16
|
-
response.status.should == 200
|
17
|
-
assigns(:users).include?(u).should == true
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
describe "SHOW record" do
|
22
|
-
it "finds the record" do
|
23
|
-
u = User.make!
|
24
|
-
get :show, id: u.id
|
25
|
-
response.status.should == 200
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
describe "NEW record" do
|
30
|
-
it "renders the form for a new record" do
|
31
|
-
get :new
|
32
|
-
response.status.should == 200
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe "CREATE record" do
|
37
|
-
it "creates the record" do
|
38
|
-
post :create, user: { first_name: 'first', last_name: 'last', email: 'test@blah.com', password: "abcd1234" }
|
39
|
-
response.should redirect_to action: :show, id: User.last.id
|
40
|
-
u = User.last
|
41
|
-
u.first_name.should == 'first'
|
42
|
-
u.last_name.should == 'last'
|
43
|
-
u.email.should == 'test@blah.com'
|
44
|
-
end
|
45
|
-
|
46
|
-
end
|
47
|
-
|
48
|
-
describe "EDIT record" do
|
49
|
-
it "renders the edit form for an existing record" do
|
50
|
-
r = User.make!
|
51
|
-
get :edit, id: r.id
|
52
|
-
response.status.should == 200
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
describe "UPDATE record" do
|
57
|
-
it "updates the record" do
|
58
|
-
u = User.make!
|
59
|
-
put :update, id: u.id, user: { first_name: "New Name" }
|
60
|
-
response.should redirect_to action: :show, id: u.id
|
61
|
-
User.find(u.id).first_name.should == "New Name"
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Admin::UsersController, :type => :controller do
|
4
|
+
render_views
|
5
|
+
|
6
|
+
before :each do
|
7
|
+
user = double('user')
|
8
|
+
allow(request.env['warden']).to receive(:authenticate!) { user }
|
9
|
+
allow(controller).to receive(:current_user) { user }
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "GET index" do
|
13
|
+
it "finds all users" do
|
14
|
+
u = User.make!
|
15
|
+
get :index
|
16
|
+
response.status.should == 200
|
17
|
+
assigns(:users).include?(u).should == true
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "SHOW record" do
|
22
|
+
it "finds the record" do
|
23
|
+
u = User.make!
|
24
|
+
get :show, params: { id: u.id }
|
25
|
+
response.status.should == 200
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "NEW record" do
|
30
|
+
it "renders the form for a new record" do
|
31
|
+
get :new
|
32
|
+
response.status.should == 200
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe "CREATE record" do
|
37
|
+
it "creates the record" do
|
38
|
+
post :create, params: { user: { first_name: 'first', last_name: 'last', email: 'test@blah.com', password: "abcd1234" } }
|
39
|
+
response.should redirect_to action: :show, id: User.last.id
|
40
|
+
u = User.last
|
41
|
+
u.first_name.should == 'first'
|
42
|
+
u.last_name.should == 'last'
|
43
|
+
u.email.should == 'test@blah.com'
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "EDIT record" do
|
49
|
+
it "renders the edit form for an existing record" do
|
50
|
+
r = User.make!
|
51
|
+
get :edit, params: { id: r.id }
|
52
|
+
response.status.should == 200
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe "UPDATE record" do
|
57
|
+
it "updates the record" do
|
58
|
+
u = User.make!
|
59
|
+
put :update, params: { id: u.id, user: { first_name: "New Name" } }
|
60
|
+
response.should redirect_to action: :show, id: u.id
|
61
|
+
User.find(u.id).first_name.should == "New Name"
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
data/spec/dummy/README.rdoc
CHANGED
@@ -1,28 +1,28 @@
|
|
1
|
-
== README
|
2
|
-
|
3
|
-
This README would normally document whatever steps are necessary to get the
|
4
|
-
application up and running.
|
5
|
-
|
6
|
-
Things you may want to cover:
|
7
|
-
|
8
|
-
* Ruby version
|
9
|
-
|
10
|
-
* System dependencies
|
11
|
-
|
12
|
-
* Configuration
|
13
|
-
|
14
|
-
* Database creation
|
15
|
-
|
16
|
-
* Database initialization
|
17
|
-
|
18
|
-
* How to run the test suite
|
19
|
-
|
20
|
-
* Services (job queues, cache servers, search engines, etc.)
|
21
|
-
|
22
|
-
* Deployment instructions
|
23
|
-
|
24
|
-
* ...
|
25
|
-
|
26
|
-
|
27
|
-
Please feel free to use a different markup language if you do not plan to run
|
28
|
-
<tt>rake doc:app</tt>.
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
data/spec/dummy/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
-
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
-
|
4
|
-
require File.expand_path('../config/application', __FILE__)
|
5
|
-
|
6
|
-
Rails.application.load_tasks
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
|
6
|
+
Rails.application.load_tasks
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class CompanyAdmin < IntrospectiveAdmin::Base
|
2
|
-
register Company do
|
3
|
-
end
|
4
|
-
end
|
1
|
+
class CompanyAdmin < IntrospectiveAdmin::Base
|
2
|
+
register Company do
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class JobAdmin < IntrospectiveAdmin::Base
|
2
|
-
register Job do
|
3
|
-
end
|
4
|
-
end
|
1
|
+
class JobAdmin < IntrospectiveAdmin::Base
|
2
|
+
register Job do
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class LocationAdmin < IntrospectiveAdmin::Base
|
2
|
-
register Location do
|
3
|
-
end
|
4
|
-
end
|
1
|
+
class LocationAdmin < IntrospectiveAdmin::Base
|
2
|
+
register Location do
|
3
|
+
end
|
4
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
class LocationBeaconAdmin < IntrospectiveAdmin::Base
|
2
|
-
register LocationBeacon do
|
3
|
-
scope :all
|
4
|
-
scope :low_battery
|
5
|
-
end
|
6
|
-
end
|
1
|
+
class LocationBeaconAdmin < IntrospectiveAdmin::Base
|
2
|
+
register LocationBeacon do
|
3
|
+
scope :all
|
4
|
+
scope :low_battery
|
5
|
+
end
|
6
|
+
end
|