tasks_management 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/tasks_management/application.js +13 -0
  6. data/app/assets/javascripts/tasks_management/tasks.js +2 -0
  7. data/app/assets/stylesheets/scaffold.css +56 -0
  8. data/app/assets/stylesheets/tasks_management/application.css +15 -0
  9. data/app/assets/stylesheets/tasks_management/tasks.css +4 -0
  10. data/app/controllers/tasks_management/application_controller.rb +4 -0
  11. data/app/controllers/tasks_management/tasks_controller.rb +64 -0
  12. data/app/helpers/tasks_management/application_helper.rb +4 -0
  13. data/app/helpers/tasks_management/tasks_helper.rb +4 -0
  14. data/app/models/tasks_management/task.rb +40 -0
  15. data/app/views/layouts/tasks_management/application.html.erb +14 -0
  16. data/app/views/tasks_management/tasks/_form.html.erb +49 -0
  17. data/app/views/tasks_management/tasks/edit.html.erb +6 -0
  18. data/app/views/tasks_management/tasks/index.html.erb +41 -0
  19. data/app/views/tasks_management/tasks/new.html.erb +5 -0
  20. data/app/views/tasks_management/tasks/show.html.erb +44 -0
  21. data/config/database.yml +15 -0
  22. data/config/routes.rb +3 -0
  23. data/db/migrate/20151010133738_create_tasks_management_tasks.rb +16 -0
  24. data/lib/tasks/tasks_management_tasks.rake +4 -0
  25. data/lib/tasks_management/engine.rb +5 -0
  26. data/lib/tasks_management/exceptions.rb +6 -0
  27. data/lib/tasks_management/has_tasks.rb +12 -0
  28. data/lib/tasks_management/version.rb +3 -0
  29. data/lib/tasks_management.rb +6 -0
  30. data/test/controllers/tasks_management/tasks_controller_test.rb +52 -0
  31. data/test/dummy/README.rdoc +28 -0
  32. data/test/dummy/Rakefile +6 -0
  33. data/test/dummy/app/assets/javascripts/application.js +13 -0
  34. data/test/dummy/app/assets/javascripts/users.js +2 -0
  35. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  36. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  37. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  38. data/test/dummy/app/controllers/application_controller.rb +5 -0
  39. data/test/dummy/app/controllers/users_controller.rb +58 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/app/helpers/users_helper.rb +2 -0
  42. data/test/dummy/app/models/user.rb +3 -0
  43. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  44. data/test/dummy/app/views/users/_form.html.erb +21 -0
  45. data/test/dummy/app/views/users/edit.html.erb +6 -0
  46. data/test/dummy/app/views/users/index.html.erb +27 -0
  47. data/test/dummy/app/views/users/new.html.erb +5 -0
  48. data/test/dummy/app/views/users/show.html.erb +9 -0
  49. data/test/dummy/bin/bundle +3 -0
  50. data/test/dummy/bin/rails +4 -0
  51. data/test/dummy/bin/rake +4 -0
  52. data/test/dummy/bin/setup +29 -0
  53. data/test/dummy/config/application.rb +26 -0
  54. data/test/dummy/config/boot.rb +5 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +41 -0
  58. data/test/dummy/config/environments/production.rb +79 -0
  59. data/test/dummy/config/environments/test.rb +42 -0
  60. data/test/dummy/config/initializers/assets.rb +11 -0
  61. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  62. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  63. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  64. data/test/dummy/config/initializers/inflections.rb +16 -0
  65. data/test/dummy/config/initializers/mime_types.rb +4 -0
  66. data/test/dummy/config/initializers/session_store.rb +3 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/routes.rb +5 -0
  70. data/test/dummy/config/secrets.yml +22 -0
  71. data/test/dummy/config.ru +4 -0
  72. data/test/dummy/db/migrate/20151010135059_create_users.rb +9 -0
  73. data/test/dummy/db/schema.rb +35 -0
  74. data/test/dummy/public/404.html +67 -0
  75. data/test/dummy/public/422.html +67 -0
  76. data/test/dummy/public/500.html +66 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/dummy/test/controllers/users_controller_test.rb +49 -0
  79. data/test/dummy/test/fixtures/users.yml +7 -0
  80. data/test/dummy/test/models/user_test.rb +17 -0
  81. data/test/fixtures/tasks_management/tasks.yml +21 -0
  82. data/test/fixtures/users.yml +7 -0
  83. data/test/integration/navigation_test.rb +10 -0
  84. data/test/models/tasks_management/task_test.rb +81 -0
  85. data/test/tasks_management_test.rb +7 -0
  86. data/test/test_helper.rb +20 -0
  87. metadata +215 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 26d23da7cd0f695d8fd1ce22d04cd052045cf364
4
+ data.tar.gz: b3260061720a1bf077ac17365868a8978bd94bc8
5
+ SHA512:
6
+ metadata.gz: bb5ffe9f809552fb4a539f6ae90a9336d1a5584223310ca143397caeeca23f3383cec244729fa80672bd874b7e32007f4d78dedaf5633824968fb79280a62733
7
+ data.tar.gz: f197a22438904cfb960f01cd7354febc9c687331778d2418bbb79923e5406cb4c266a12eda63b0182edbb52e24387947cbf13d6b6c3a93f0dda6dde4d9e62ad6
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 Adrian Chang
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = TasksManagement
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,37 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'TasksManagement'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+ load 'rails/tasks/statistics.rake'
22
+
23
+
24
+
25
+ Bundler::GemHelper.install_tasks
26
+
27
+ require 'rake/testtask'
28
+
29
+ Rake::TestTask.new(:test) do |t|
30
+ t.libs << 'lib'
31
+ t.libs << 'test'
32
+ t.pattern = 'test/**/*_test.rb'
33
+ t.verbose = false
34
+ end
35
+
36
+
37
+ task default: :test
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,56 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ div.field, div.actions {
20
+ margin-bottom: 10px;
21
+ }
22
+
23
+ #notice {
24
+ color: green;
25
+ }
26
+
27
+ .field_with_errors {
28
+ padding: 2px;
29
+ background-color: red;
30
+ display: table;
31
+ }
32
+
33
+ #error_explanation {
34
+ width: 450px;
35
+ border: 2px solid red;
36
+ padding: 7px;
37
+ padding-bottom: 0;
38
+ margin-bottom: 20px;
39
+ background-color: #f0f0f0;
40
+ }
41
+
42
+ #error_explanation h2 {
43
+ text-align: left;
44
+ font-weight: bold;
45
+ padding: 5px 5px 5px 15px;
46
+ font-size: 12px;
47
+ margin: -7px;
48
+ margin-bottom: 0px;
49
+ background-color: #c00;
50
+ color: #fff;
51
+ }
52
+
53
+ #error_explanation ul li {
54
+ font-size: 12px;
55
+ list-style: square;
56
+ }
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,4 @@
1
+ module TasksManagement
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,64 @@
1
+ require_dependency "tasks_management/application_controller"
2
+
3
+ module TasksManagement
4
+ class TasksController < ApplicationController
5
+ before_action :set_task, only: [:show, :edit, :update, :destroy]
6
+
7
+ # GET /tasks
8
+ def index
9
+ @tasks = Task.all
10
+ end
11
+
12
+ # GET /tasks/1
13
+ def show
14
+ end
15
+
16
+ # GET /tasks/new
17
+ def new
18
+ @task = Task.new
19
+ end
20
+
21
+ # GET /tasks/1/edit
22
+ def edit
23
+ end
24
+
25
+ # POST /tasks
26
+ def create
27
+ @task = Task.new(task_params)
28
+
29
+ if @task.save
30
+ redirect_to @task, notice: 'Task was successfully created.'
31
+ else
32
+ render :new
33
+ end
34
+ end
35
+
36
+ # PATCH/PUT /tasks/1
37
+ def update
38
+ if @task.update(task_params)
39
+ redirect_to @task, notice: 'Task was successfully updated.'
40
+ else
41
+ render :edit
42
+ end
43
+ end
44
+
45
+ # DELETE /tasks/1
46
+ def destroy
47
+ @task.destroy
48
+ redirect_to tasks_url, notice: 'Task was successfully destroyed.'
49
+ end
50
+
51
+ private
52
+ # Use callbacks to share common setup or constraints between actions.
53
+ def set_task
54
+ @task = Task.find(params[:id])
55
+ end
56
+
57
+ # Only allow a trusted parameter "white list" through.
58
+ def task_params
59
+ params['task']['priority'] = params['task']['priority'].to_i
60
+ params['task']['state'] = params['task']['state'].to_i
61
+ params.require(:task).permit(:title, :description, :priority, :state, :parent_id, :owner_id, :requester_id, :end_date)
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,4 @@
1
+ module TasksManagement
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module TasksManagement
2
+ module TasksHelper
3
+ end
4
+ end
@@ -0,0 +1,40 @@
1
+ module TasksManagement
2
+ class Task < ActiveRecord::Base
3
+ attr_accessor :owners
4
+
5
+ has_many :sub_tasks, class_name: "Task", foreign_key: "parent_id"
6
+ belongs_to :parent, class_name: "Task"
7
+
8
+ enum priority: [:high, :medium, :low]
9
+ enum state: [:pending, :rejected, :started, :finished, :accepted]
10
+
11
+ after_save do
12
+ unless self.owners.blank?
13
+ raise TasksManagement::OwnerIdSettedException unless self.owner.blank?
14
+ self.owners.each do |owner|
15
+ TasksManagement::Task.create(title: title, description: description, priority: priority, state: state, parent_id: id, owner: owner, requester: requester, end_date: end_date)
16
+ end
17
+ end
18
+ end
19
+
20
+ def start!
21
+ raise TasksManagement::InvalidTaskStateException unless self.state == 'pending' or self.state == 'rejected'
22
+ self.started!
23
+ end
24
+
25
+ def finish!
26
+ raise TasksManagement::InvalidTaskStateException unless self.state == 'started'
27
+ self.finished!
28
+ end
29
+
30
+ def accept!
31
+ raise TasksManagement::InvalidTaskStateException unless self.state == 'finished'
32
+ self.accepted!
33
+ end
34
+
35
+ def reject!
36
+ raise TasksManagement::InvalidTaskStateException unless self.state == 'finished'
37
+ self.rejected!
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>TasksManagement</title>
5
+ <%= stylesheet_link_tag "tasks_management/application", media: "all" %>
6
+ <%= javascript_include_tag "tasks_management/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,49 @@
1
+ <%= form_for(@task) do |f| %>
2
+ <% if @task.errors.any? %>
3
+ <div id="error_explanation">
4
+ <h2><%= pluralize(@task.errors.count, "error") %> prohibited this task from being saved:</h2>
5
+
6
+ <ul>
7
+ <% @task.errors.full_messages.each do |message| %>
8
+ <li><%= message %></li>
9
+ <% end %>
10
+ </ul>
11
+ </div>
12
+ <% end %>
13
+
14
+ <div class="field">
15
+ <%= f.label :title %><br>
16
+ <%= f.text_field :title %>
17
+ </div>
18
+ <div class="field">
19
+ <%= f.label :description %><br>
20
+ <%= f.text_area :description %>
21
+ </div>
22
+ <div class="field">
23
+ <%= f.label :priority %><br>
24
+ <%= f.select :priority, options_for_select(TasksManagement::Task.priorities) %>
25
+ </div>
26
+ <div class="field">
27
+ <%= f.label :state %><br>
28
+ <%= f.select :state, options_for_select(TasksManagement::Task.states) %>
29
+ </div>
30
+ <div class="field">
31
+ <%= f.label :parent_id %><br>
32
+ <%= f.collection_select :parent_id, TasksManagement::Task.all, :id, :title, include_blank: true %>
33
+ </div>
34
+ <div class="field">
35
+ <%= f.label :owner_id %><br>
36
+ <%= f.number_field :owner_id %>
37
+ </div>
38
+ <div class="field">
39
+ <%= f.label :requester_id %><br>
40
+ <%= f.number_field :requester_id %>
41
+ </div>
42
+ <div class="field">
43
+ <%= f.label :end_date %><br>
44
+ <%= f.date_select :end_date %>
45
+ </div>
46
+ <div class="actions">
47
+ <%= f.submit %>
48
+ </div>
49
+ <% end %>
@@ -0,0 +1,6 @@
1
+ <h1>Editing Task</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Show', @task %> |
6
+ <%= link_to 'Back', tasks_path %>
@@ -0,0 +1,41 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <h1>Listing Tasks</h1>
4
+
5
+ <table>
6
+ <thead>
7
+ <tr>
8
+ <th>Title</th>
9
+ <th>Description</th>
10
+ <th>Priority</th>
11
+ <th>State</th>
12
+ <th>Parent</th>
13
+ <th>Owner</th>
14
+ <th>Requester</th>
15
+ <th>End date</th>
16
+ <th colspan="3"></th>
17
+ </tr>
18
+ </thead>
19
+
20
+ <tbody>
21
+ <% @tasks.each do |task| %>
22
+ <tr>
23
+ <td><%= task.title %></td>
24
+ <td><%= task.description %></td>
25
+ <td><%= task.priority %></td>
26
+ <td><%= task.state %></td>
27
+ <td><%= task.parent_id %></td>
28
+ <td><%= task.owner_id %></td>
29
+ <td><%= task.requester_id %></td>
30
+ <td><%= task.end_date %></td>
31
+ <td><%= link_to 'Show', task %></td>
32
+ <td><%= link_to 'Edit', edit_task_path(task) %></td>
33
+ <td><%= link_to 'Destroy', task, method: :delete, data: { confirm: 'Are you sure?' } %></td>
34
+ </tr>
35
+ <% end %>
36
+ </tbody>
37
+ </table>
38
+
39
+ <br>
40
+
41
+ <%= link_to 'New Task', new_task_path %>
@@ -0,0 +1,5 @@
1
+ <h1>New Task</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Back', tasks_path %>
@@ -0,0 +1,44 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <p>
4
+ <strong>Title:</strong>
5
+ <%= @task.title %>
6
+ </p>
7
+
8
+ <p>
9
+ <strong>Description:</strong>
10
+ <%= @task.description %>
11
+ </p>
12
+
13
+ <p>
14
+ <strong>Priority:</strong>
15
+ <%= @task.priority %>
16
+ </p>
17
+
18
+ <p>
19
+ <strong>State:</strong>
20
+ <%= @task.state %>
21
+ </p>
22
+
23
+ <p>
24
+ <strong>Parent:</strong>
25
+ <%= @task.parent_id %>
26
+ </p>
27
+
28
+ <p>
29
+ <strong>Owner:</strong>
30
+ <%= @task.owner_id %>
31
+ </p>
32
+
33
+ <p>
34
+ <strong>Requester:</strong>
35
+ <%= @task.requester_id %>
36
+ </p>
37
+
38
+ <p>
39
+ <strong>End date:</strong>
40
+ <%= @task.end_date %>
41
+ </p>
42
+
43
+ <%= link_to 'Edit', edit_task_path(@task) %> |
44
+ <%= link_to 'Back', tasks_path %>
@@ -0,0 +1,15 @@
1
+ development:
2
+ adapter: sqlite3
3
+ database: db/development.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ test: &test
8
+ adapter: sqlite3
9
+ database: db/test.sqlite3
10
+ pool: 5
11
+ timeout: 5000
12
+
13
+ cucumber:
14
+ <<: *test
15
+
data/config/routes.rb ADDED
@@ -0,0 +1,3 @@
1
+ TasksManagement::Engine.routes.draw do
2
+ resources :tasks
3
+ end
@@ -0,0 +1,16 @@
1
+ class CreateTasksManagementTasks < ActiveRecord::Migration
2
+ def change
3
+ create_table :tasks_management_tasks do |t|
4
+ t.string :title
5
+ t.text :description
6
+ t.integer :priority
7
+ t.integer :state
8
+ t.integer :parent_id
9
+ t.integer :owner_id
10
+ t.integer :requester_id
11
+ t.date :end_date
12
+
13
+ t.timestamps null: false
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :tasks_management do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,5 @@
1
+ module TasksManagement
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace TasksManagement
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ module TasksManagement
2
+ class OwnerIdSettedException < RuntimeError
3
+ end
4
+ class InvalidTaskStateException < RuntimeError
5
+ end
6
+ end
@@ -0,0 +1,12 @@
1
+ class ActiveRecord::Base
2
+ def self.has_tasks
3
+ has_many :owner_tasks, class_name: 'TasksManagement::Task', foreign_key: :owner_id
4
+ has_many :requester_tasks, class_name: 'TasksManagement::Task', foreign_key: :requester_id
5
+
6
+ user_class = self
7
+ TasksManagement::Task.class_eval do
8
+ belongs_to :owner, class_name: user_class.name
9
+ belongs_to :requester, class_name: user_class.name
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,3 @@
1
+ module TasksManagement
2
+ VERSION = "0.1.2"
3
+ end
@@ -0,0 +1,6 @@
1
+ require "tasks_management/engine"
2
+ require "tasks_management/exceptions"
3
+ require "tasks_management/has_tasks"
4
+
5
+ module TasksManagement
6
+ end
@@ -0,0 +1,52 @@
1
+ require 'test_helper'
2
+
3
+ module TasksManagement
4
+ class TasksControllerTest < ActionController::TestCase
5
+ setup do
6
+ @task = tasks_management_tasks(:one)
7
+ @routes = Engine.routes
8
+ end
9
+
10
+ test "should get index" do
11
+ get :index
12
+ assert_response :success
13
+ assert_not_nil assigns(:tasks)
14
+ end
15
+
16
+ test "should get new" do
17
+ get :new
18
+ assert_response :success
19
+ end
20
+
21
+ test "should create task" do
22
+ assert_difference('Task.count') do
23
+ post :create, task: { description: @task.description, end_date: @task.end_date, owner_id: @task.owner_id, parent_id: @task.parent_id, priority: @task.priority, requester_id: @task.requester_id, state: @task.state, title: @task.title }
24
+ end
25
+
26
+ assert_redirected_to task_path(assigns(:task))
27
+ end
28
+
29
+ test "should show task" do
30
+ get :show, id: @task
31
+ assert_response :success
32
+ end
33
+
34
+ test "should get edit" do
35
+ get :edit, id: @task
36
+ assert_response :success
37
+ end
38
+
39
+ test "should update task" do
40
+ patch :update, id: @task, task: { description: @task.description, end_date: @task.end_date, owner_id: @task.owner_id, parent_id: @task.parent_id, priority: @task.priority, requester_id: @task.requester_id, state: @task.state, title: @task.title }
41
+ assert_redirected_to task_path(assigns(:task))
42
+ end
43
+
44
+ test "should destroy task" do
45
+ assert_difference('Task.count', -1) do
46
+ delete :destroy, id: @task
47
+ end
48
+
49
+ assert_redirected_to tasks_path
50
+ end
51
+ end
52
+ end
@@ -0,0 +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>.
@@ -0,0 +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
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */