the_sortable_tree 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/README.md +6 -1
  2. data/app/helpers/render_nested_options_helper.rb +5 -2
  3. data/lib/the_sortable_tree/version.rb +1 -1
  4. data/spec/{controlllers → old_tests/controlllers}/controller_mixin_spec.rb +1 -1
  5. data/spec/{dummy → old_tests/dummy}/README.rdoc +0 -0
  6. data/spec/{dummy → old_tests/dummy}/Rakefile +0 -0
  7. data/spec/{dummy → old_tests/dummy}/app/assets/javascripts/application.js +0 -0
  8. data/spec/{dummy → old_tests/dummy}/app/assets/stylesheets/application.css +0 -0
  9. data/spec/{dummy → old_tests/dummy}/app/controllers/application_controller.rb +0 -0
  10. data/spec/{dummy → old_tests/dummy}/app/controllers/tests_controller.rb +0 -0
  11. data/spec/{dummy → old_tests/dummy}/app/views/layouts/application.html.erb +0 -0
  12. data/spec/{dummy → old_tests/dummy}/config/application.rb +0 -0
  13. data/spec/{dummy → old_tests/dummy}/config/boot.rb +0 -0
  14. data/spec/{dummy → old_tests/dummy}/config/database.yml +0 -0
  15. data/spec/{dummy → old_tests/dummy}/config/environment.rb +0 -0
  16. data/spec/{dummy → old_tests/dummy}/config/environments/development.rb +0 -0
  17. data/spec/{dummy → old_tests/dummy}/config/environments/production.rb +0 -0
  18. data/spec/{dummy → old_tests/dummy}/config/environments/test.rb +0 -0
  19. data/spec/{dummy → old_tests/dummy}/config/initializers/backtrace_silencers.rb +0 -0
  20. data/spec/{dummy → old_tests/dummy}/config/initializers/inflections.rb +0 -0
  21. data/spec/{dummy → old_tests/dummy}/config/initializers/mime_types.rb +0 -0
  22. data/spec/{dummy → old_tests/dummy}/config/initializers/secret_token.rb +0 -0
  23. data/spec/{dummy → old_tests/dummy}/config/initializers/session_store.rb +0 -0
  24. data/spec/{dummy → old_tests/dummy}/config/initializers/wrap_parameters.rb +0 -0
  25. data/spec/{dummy → old_tests/dummy}/config/locales/en.yml +0 -0
  26. data/spec/{dummy → old_tests/dummy}/config/routes.rb +0 -0
  27. data/spec/{dummy → old_tests/dummy}/config.ru +0 -0
  28. data/spec/{dummy → old_tests/dummy}/db/test.sqlite3 +0 -0
  29. data/spec/{dummy → old_tests/dummy}/log/test.log +0 -0
  30. data/spec/{dummy → old_tests/dummy}/public/404.html +0 -0
  31. data/spec/{dummy → old_tests/dummy}/public/422.html +0 -0
  32. data/spec/{dummy → old_tests/dummy}/public/500.html +0 -0
  33. data/spec/{dummy → old_tests/dummy}/public/favicon.ico +0 -0
  34. data/spec/{dummy → old_tests/dummy}/script/rails +0 -0
  35. data/spec/{spec_helper.rb → old_tests/spec_helper.rb} +0 -0
  36. data/spec/the_sortable_tree_app/Gemfile +20 -0
  37. data/spec/the_sortable_tree_app/Gemfile.lock +138 -0
  38. data/spec/the_sortable_tree_app/README.md +9 -0
  39. data/spec/the_sortable_tree_app/Rakefile +7 -0
  40. data/spec/the_sortable_tree_app/app/assets/images/rails.png +0 -0
  41. data/spec/the_sortable_tree_app/app/assets/javascripts/application.js +16 -0
  42. data/spec/the_sortable_tree_app/app/assets/stylesheets/application.css +11 -0
  43. data/spec/the_sortable_tree_app/app/controllers/admin/pages_controller.rb +31 -0
  44. data/spec/the_sortable_tree_app/app/controllers/application_controller.rb +3 -0
  45. data/spec/the_sortable_tree_app/app/controllers/article_categories_controller.rb +11 -0
  46. data/spec/the_sortable_tree_app/app/controllers/inventory/categories_controller.rb +15 -0
  47. data/spec/the_sortable_tree_app/app/controllers/pages_controller.rb +26 -0
  48. data/spec/the_sortable_tree_app/app/controllers/welcome_controller.rb +3 -0
  49. data/spec/the_sortable_tree_app/app/models/admin/page.rb +4 -0
  50. data/spec/the_sortable_tree_app/app/models/admin.rb +5 -0
  51. data/spec/the_sortable_tree_app/app/models/article_category.rb +4 -0
  52. data/spec/the_sortable_tree_app/app/models/inventory/category.rb +4 -0
  53. data/spec/the_sortable_tree_app/app/models/inventory.rb +5 -0
  54. data/spec/the_sortable_tree_app/app/models/page.rb +5 -0
  55. data/spec/the_sortable_tree_app/app/views/admin/pages/index.html.haml +8 -0
  56. data/spec/the_sortable_tree_app/app/views/admin/pages/manage.html.haml +3 -0
  57. data/spec/the_sortable_tree_app/app/views/admin/pages/namespaced_link.html.haml +3 -0
  58. data/spec/the_sortable_tree_app/app/views/admin/pages/nested_options.html.haml +3 -0
  59. data/spec/the_sortable_tree_app/app/views/admin/pages/node_manage.html.haml +12 -0
  60. data/spec/the_sortable_tree_app/app/views/article_categories/index.html.haml +3 -0
  61. data/spec/the_sortable_tree_app/app/views/article_categories/manage.html.haml +4 -0
  62. data/spec/the_sortable_tree_app/app/views/inventory/categories/index.html.haml +3 -0
  63. data/spec/the_sortable_tree_app/app/views/inventory/categories/manage.html.haml +4 -0
  64. data/spec/the_sortable_tree_app/app/views/layouts/application.html.erb +18 -0
  65. data/spec/the_sortable_tree_app/app/views/pages/expand.html.haml +7 -0
  66. data/spec/the_sortable_tree_app/app/views/pages/expand_children.html.haml +1 -0
  67. data/spec/the_sortable_tree_app/app/views/pages/index.html.haml +3 -0
  68. data/spec/the_sortable_tree_app/app/views/pages/manage.html.haml +8 -0
  69. data/spec/the_sortable_tree_app/app/views/pages/nested_options.html.haml +3 -0
  70. data/spec/the_sortable_tree_app/app/views/welcome/index.html.haml +40 -0
  71. data/spec/the_sortable_tree_app/config/application.rb +48 -0
  72. data/spec/the_sortable_tree_app/config/boot.rb +6 -0
  73. data/spec/the_sortable_tree_app/config/database.yml +11 -0
  74. data/spec/the_sortable_tree_app/config/environment.rb +5 -0
  75. data/spec/the_sortable_tree_app/config/environments/development.rb +30 -0
  76. data/spec/the_sortable_tree_app/config/environments/production.rb +60 -0
  77. data/spec/the_sortable_tree_app/config/environments/test.rb +42 -0
  78. data/spec/the_sortable_tree_app/config/initializers/backtrace_silencers.rb +7 -0
  79. data/spec/the_sortable_tree_app/config/initializers/inflections.rb +10 -0
  80. data/spec/the_sortable_tree_app/config/initializers/mime_types.rb +5 -0
  81. data/spec/the_sortable_tree_app/config/initializers/secret_token.rb +7 -0
  82. data/spec/the_sortable_tree_app/config/initializers/session_store.rb +8 -0
  83. data/spec/the_sortable_tree_app/config/initializers/wrap_parameters.rb +14 -0
  84. data/spec/the_sortable_tree_app/config/locales/en.yml +28 -0
  85. data/spec/the_sortable_tree_app/config/routes.rb +47 -0
  86. data/spec/the_sortable_tree_app/config.ru +4 -0
  87. data/spec/the_sortable_tree_app/db/development.db +0 -0
  88. data/spec/the_sortable_tree_app/db/migrate/20120211053457_create_pages.rb +16 -0
  89. data/spec/the_sortable_tree_app/db/migrate/20120503173258_create_article_categories.rb +16 -0
  90. data/spec/the_sortable_tree_app/db/migrate/20120508093823_create_inventory_categories.rb +16 -0
  91. data/spec/the_sortable_tree_app/db/migrate/20130128160328_create_admin_pages.rb +16 -0
  92. data/spec/the_sortable_tree_app/db/production.db +0 -0
  93. data/spec/the_sortable_tree_app/db/schema.rb +64 -0
  94. data/spec/the_sortable_tree_app/db/seeds.rb +96 -0
  95. data/spec/the_sortable_tree_app/db/test.db +0 -0
  96. data/spec/the_sortable_tree_app/doc/README_FOR_APP +2 -0
  97. data/spec/the_sortable_tree_app/log/development.log +18672 -0
  98. data/spec/the_sortable_tree_app/log/production.log +5 -0
  99. data/spec/the_sortable_tree_app/public/404.html +26 -0
  100. data/spec/the_sortable_tree_app/public/422.html +26 -0
  101. data/spec/the_sortable_tree_app/public/500.html +26 -0
  102. data/spec/the_sortable_tree_app/public/favicon.ico +0 -0
  103. data/spec/the_sortable_tree_app/public/robots.txt +5 -0
  104. data/spec/the_sortable_tree_app/script/rails +6 -0
  105. data/spec/the_sortable_tree_app/test/fixtures/admin/pages.yml +7 -0
  106. data/spec/the_sortable_tree_app/test/fixtures/article_categories.yml +9 -0
  107. data/spec/the_sortable_tree_app/test/fixtures/comments.yml +13 -0
  108. data/spec/the_sortable_tree_app/test/fixtures/inventory/categories.yml +9 -0
  109. data/spec/the_sortable_tree_app/test/functional/inventory/category_controller_test.rb +14 -0
  110. data/spec/the_sortable_tree_app/test/performance/browsing_test.rb +12 -0
  111. data/spec/the_sortable_tree_app/test/test_helper.rb +13 -0
  112. data/spec/the_sortable_tree_app/test/unit/admin/page_test.rb +7 -0
  113. data/spec/the_sortable_tree_app/test/unit/article_category_test.rb +7 -0
  114. data/spec/the_sortable_tree_app/test/unit/comment_test.rb +7 -0
  115. data/spec/the_sortable_tree_app/test/unit/helpers/inventory/category_helper_test.rb +4 -0
  116. data/spec/the_sortable_tree_app/test/unit/inventory/category_test.rb +7 -0
  117. data/spec/the_sortable_tree_app/tmp/cache/assets/C3B/4B0/sprockets%2F4143dd2388a3252adb1804945871a002 +0 -0
  118. data/spec/the_sortable_tree_app/tmp/cache/assets/C50/BE0/sprockets%2Fa139ccc37272f09e8337565114558a42 +0 -0
  119. data/spec/the_sortable_tree_app/tmp/cache/assets/C6B/530/sprockets%2F54e7598ead46f414a5474993750992a6 +0 -0
  120. data/spec/the_sortable_tree_app/tmp/cache/assets/C77/560/sprockets%2F813f25e4a0780001a1f80f83ea522987 +0 -0
  121. data/spec/the_sortable_tree_app/tmp/cache/assets/C81/090/sprockets%2F5338822ad86a0a0079f990225ed9037d +0 -0
  122. data/spec/the_sortable_tree_app/tmp/cache/assets/C9A/730/sprockets%2F12ff81fe7a0c213d511536b1a9712613 +0 -0
  123. data/spec/the_sortable_tree_app/tmp/cache/assets/C9B/370/sprockets%2F4b19719024eb862bb0b40c2903b2444f +0 -0
  124. data/spec/the_sortable_tree_app/tmp/cache/assets/CB1/D00/sprockets%2F90a69052f559169cc0338bb9e7b2071c +0 -0
  125. data/spec/the_sortable_tree_app/tmp/cache/assets/CC9/ED0/sprockets%2Fa98594ed698bb2f25c32497158b7346f +0 -0
  126. data/spec/the_sortable_tree_app/tmp/cache/assets/CD5/540/sprockets%2Fa2e03c2a79820a23e494e3b8459c32f0 +0 -0
  127. data/spec/the_sortable_tree_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  128. data/spec/the_sortable_tree_app/tmp/cache/assets/CDC/B70/sprockets%2Fb8655a3e58029cd981112a7ce421db65 +0 -0
  129. data/spec/the_sortable_tree_app/tmp/cache/assets/CE9/BD0/sprockets%2F22287637edb361485c371efd7817acc7 +0 -0
  130. data/spec/the_sortable_tree_app/tmp/cache/assets/CEA/2D0/sprockets%2F77e58093f6053b9964ca2b36bd34a94d +0 -0
  131. data/spec/the_sortable_tree_app/tmp/cache/assets/CEE/3C0/sprockets%2Ff078d8a33d271e8bf062dfd978343537 +0 -0
  132. data/spec/the_sortable_tree_app/tmp/cache/assets/CF0/590/sprockets%2F66914ec5c90e7fa7285377a17c4b94e3 +0 -0
  133. data/spec/the_sortable_tree_app/tmp/cache/assets/CF8/C70/sprockets%2Fb086216a7cea4b05f2d10a54a1508c86 +0 -0
  134. data/spec/the_sortable_tree_app/tmp/cache/assets/D07/110/sprockets%2F4a6961a0c735dbbba76f35e606f34027 +0 -0
  135. data/spec/the_sortable_tree_app/tmp/cache/assets/D0A/840/sprockets%2F38149c503a4865c81cef8cc0226b6a3d +0 -0
  136. data/spec/the_sortable_tree_app/tmp/cache/assets/D0E/CE0/sprockets%2F54005c20e9fd12f1d6d7bf9f7080f822 +0 -0
  137. data/spec/the_sortable_tree_app/tmp/cache/assets/D0F/540/sprockets%2Ffdff04173da67c582219de85c136320f +0 -0
  138. data/spec/the_sortable_tree_app/tmp/cache/assets/D14/170/sprockets%2F2a860136457d8b8f4fedb7bcb3962136 +0 -0
  139. data/spec/the_sortable_tree_app/tmp/cache/assets/D14/F00/sprockets%2Fb0d459b10f17bcc3955798772c7bac18 +0 -0
  140. data/spec/the_sortable_tree_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  141. data/spec/the_sortable_tree_app/tmp/cache/assets/D38/E20/sprockets%2F0e50ead9c50e79817fc32184e900ba5a +0 -0
  142. data/spec/the_sortable_tree_app/tmp/cache/assets/D42/760/sprockets%2Fa26ac9237d11ffa65fca30c861979e36 +0 -0
  143. data/spec/the_sortable_tree_app/tmp/cache/assets/D47/BE0/sprockets%2F544a4972c2f7438e092ab50cbc8c9de9 +0 -0
  144. data/spec/the_sortable_tree_app/tmp/cache/assets/D48/300/sprockets%2F392aba9fd44f378041913c9f0edef429 +0 -0
  145. data/spec/the_sortable_tree_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  146. data/spec/the_sortable_tree_app/tmp/cache/assets/D51/420/sprockets%2F8497f4db9b07de37eee54184fd031e93 +0 -0
  147. data/spec/the_sortable_tree_app/tmp/cache/assets/D59/D90/sprockets%2Ff09bd16e880b660cbf49848bc97f29e7 +0 -0
  148. data/spec/the_sortable_tree_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  149. data/spec/the_sortable_tree_app/tmp/cache/assets/D5F/560/sprockets%2Fa07f8d3d20c8ad7093220eb04c67a6cd +0 -0
  150. data/spec/the_sortable_tree_app/tmp/cache/assets/D7C/D70/sprockets%2F8c4e6f6fc945e97cae12d8218a21f8b3 +0 -0
  151. data/spec/the_sortable_tree_app/tmp/cache/assets/DA2/800/sprockets%2F21a7cffa498af4bfb7a0849616b41dd8 +0 -0
  152. data/spec/the_sortable_tree_app/tmp/cache/assets/DAE/A40/sprockets%2F78e36ff8ef2fc355f82b30e0bfb397b5 +0 -0
  153. data/spec/the_sortable_tree_app/tmp/cache/assets/DD3/4C0/sprockets%2Fb4b73a83da8ea301f18e578dc3d9dde6 +0 -0
  154. data/spec/the_sortable_tree_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  155. data/spec/the_sortable_tree_app/tmp/cache/assets/DF1/8B0/sprockets%2F2f0d2d00353acefe637b5338a9abfdfb +0 -0
  156. data/spec/the_sortable_tree_app/tmp/cache/assets/E03/A20/sprockets%2F74f7c02ea34e1ecfcb83bff7c167c75d +0 -0
  157. data/spec/the_sortable_tree_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  158. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/nested_options.css.scssc +0 -0
  159. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/sortable_tree.css.scssc +0 -0
  160. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/tree.css.scssc +0 -0
  161. metadata +340 -110
@@ -0,0 +1,5 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+
6
+ two:
7
+ title: MyString
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ content: MyText
6
+
7
+ two:
8
+ title: MyString
9
+ content: MyText
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ email: MyString
6
+ raw_content: MyText
7
+ content: MyText
8
+
9
+ two:
10
+ name: MyString
11
+ email: MyString
12
+ raw_content: MyText
13
+ content: MyText
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ content: MyText
6
+
7
+ two:
8
+ title: MyString
9
+ content: MyText
@@ -0,0 +1,14 @@
1
+ require 'test_helper'
2
+
3
+ class Inventory::CategoryControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ test "should get manage" do
10
+ get :manage
11
+ assert_response :success
12
+ end
13
+
14
+ end
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ class BrowsingTest < ActionDispatch::PerformanceTest
5
+ # Refer to the documentation for all available options
6
+ # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
+ # :output => 'tmp/performance', :formats => [:flat] }
8
+
9
+ def test_homepage
10
+ get '/'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Admin::PageTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ArticleCategoryTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class CommentTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class Inventory::CategoryHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Inventory::CategoryTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end