mountain_view 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +64 -0
  3. data/Rakefile +12 -16
  4. data/app/assets/stylesheets/mountain_view/styleguide.css +1 -0
  5. data/app/helpers/mountain_view/styleguide_helper.rb +6 -2
  6. data/app/views/layouts/mountain_view.html.erb +4 -4
  7. data/app/views/mountain_view/styleguide/_example.html.erb +9 -5
  8. data/app/views/mountain_view/styleguide/index.html.erb +5 -5
  9. data/app/views/mountain_view/styleguide/show.html.erb +13 -9
  10. data/config/locales/en.yml +25 -0
  11. data/config/routes.rb +2 -1
  12. data/lib/generators/mountain_view/extra_pages_generator.rb +1 -0
  13. data/lib/mountain_view.rb +3 -0
  14. data/lib/mountain_view/component.rb +9 -1
  15. data/lib/mountain_view/engine.rb +5 -4
  16. data/lib/mountain_view/presenter.rb +5 -2
  17. data/lib/mountain_view/stub.rb +29 -0
  18. data/lib/mountain_view/version.rb +1 -1
  19. data/test/dummy/app/components/header/header.yml +4 -0
  20. data/test/dummy/app/components/meta_header/_meta_header.html.erb +6 -0
  21. data/test/dummy/app/components/meta_header/meta_header.css +32 -0
  22. data/test/dummy/app/components/meta_header/meta_header.js +0 -0
  23. data/test/dummy/app/components/meta_header/meta_header.yml +14 -0
  24. data/test/dummy/log/test.log +1076 -920
  25. data/test/generators/component_generator_test.rb +3 -3
  26. data/test/generators/extra_pages_generator_test.rb +1 -1
  27. data/test/mountain_view/component_test.rb +47 -61
  28. data/test/mountain_view/stub_test.rb +49 -0
  29. data/test/mountain_view_test.rb +1 -1
  30. data/test/test_helper.rb +31 -2
  31. metadata +60 -50
  32. data/test/dummy/log/development.log +0 -315
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MountainView
4
+ # Manage the information for a specific example stub in the style guide
5
+ class Stub
6
+ attr_reader :properties, :meta
7
+
8
+ def initialize(component_properties)
9
+ @meta = component_properties[:mv_stub_meta] || {}
10
+ @properties = component_properties.except(:mv_stub_meta) || {}
11
+ end
12
+
13
+ def meta_title(example_title, example_number)
14
+ if @meta.key?(:title)
15
+ @meta[:title]
16
+ else
17
+ example_title + " " + (example_number + 1).to_s
18
+ end
19
+ end
20
+
21
+ def meta_description
22
+ @meta[:description]
23
+ end
24
+
25
+ def meta_classes
26
+ @meta[:classes]
27
+ end
28
+ end
29
+ end
@@ -1,3 +1,3 @@
1
1
  module MountainView
2
- VERSION = "0.13.0".freeze
2
+ VERSION = "0.14.0".freeze
3
3
  end
@@ -1,6 +1,10 @@
1
1
  :meta: 'There is this different classes'
2
2
  :stubs:
3
3
  -
4
+ :mv_stub_meta:
5
+ :title: "Specific Example"
6
+ :description: "Instructions for use case and UX considerations"
7
+ :classes: "black-background"
4
8
  :id: 1
5
9
  :title: "20 Mountains you didn't know they even existed"
6
10
  :subtitle: "Buzzfeed title"
@@ -0,0 +1,6 @@
1
+ <div class="header">
2
+ <h1><%= link_to properties[:title], product_path(properties[:id]) %></h1>
3
+ <%- if properties[:subtitle] %>
4
+ <h3><%= properties[:subtitle] %></h3>
5
+ <% end %>
6
+ </div>
@@ -0,0 +1,32 @@
1
+ .header {
2
+ margin-bottom: 30px;
3
+ position: relative;
4
+ }
5
+
6
+ .header h1{
7
+ font-size: 30px;
8
+ margin-bottom: 10px;
9
+ }
10
+
11
+ .header a{
12
+ text-decoration: none;
13
+ }
14
+
15
+ .header a:hover{
16
+ text-decoration: underline;
17
+ }
18
+
19
+ .header h3{
20
+ font-size: 20px;
21
+ font-family: 'Georgia';
22
+ color:#888;
23
+ }
24
+
25
+ .header::after{
26
+ content: " ";
27
+ width: 100px;
28
+ position: absolute;
29
+ bottom: -17px;
30
+ left: 0;
31
+ border-bottom: 5px solid #2C9140;
32
+ }
@@ -0,0 +1,14 @@
1
+ :title: 'My Meta Header'
2
+ :meta: 'This describes the use of components as a whole'
3
+ :stubs:
4
+ -
5
+ :mv_stub_meta:
6
+ :title: "Specific Example"
7
+ :description: "This describes the use of this specific settings for the component"
8
+ :classes: "mv--black-background"
9
+ :id: 1
10
+ :title: "20 Mountains you didn't know they even existed"
11
+ :subtitle: "Buzzfeed title"
12
+ -
13
+ :id: 2
14
+ :title: "You won't believe what happened to this man at Aspen"
@@ -1,556 +1,423 @@
1
+ -----------------------------------------------------
2
+ MountedEngineTest: test_Has_been_mounted_successfully
3
+ -----------------------------------------------------
4
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
5
+ Processing by MountainView::StyleguideController#index as HTML
6
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
7
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (6.8ms)
8
+ MountainView: stylesheet not found for component 'paragraph'
9
+ MountainView: javascript not found for component 'paragraph'
10
+ Completed 200 OK in 265ms (Views: 263.1ms)
11
+ -------------------------------------------------------------------------
12
+ MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
13
+ -------------------------------------------------------------------------
14
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
15
+ Processing by MountainView::StyleguideController#index as HTML
16
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
17
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
18
+ Completed 200 OK in 4ms (Views: 4.0ms)
19
+ ------------------------------------------------
20
+ MountedEngineTest: test_Has_the_styleguide_route
21
+ ------------------------------------------------
22
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
23
+ Processing by MountainView::StyleguideController#index as HTML
24
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
25
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
26
+ Completed 200 OK in 3ms (Views: 3.4ms)
27
+ --------------------------------------------------------------------------------------------
28
+ MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
29
+ --------------------------------------------------------------------------------------------
30
+ ----------------------------------------------------------------------------
31
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
32
+ ----------------------------------------------------------------------------
33
+ -------------------------------------------------------------------
34
+ MountainViewConfigurationTest: test_set_custom_included_stylesheets
35
+ -------------------------------------------------------------------
36
+ --------------------------------------------------------------
37
+ MountainViewConfigurationTest: test_set_custom_styleguide_path
38
+ --------------------------------------------------------------
39
+ --------------------------------------------------------
40
+ ComponentGeneratorTest: test_Generates_different_engines
41
+ --------------------------------------------------------
42
+ ------------------------------------------------------------------
43
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
44
+ ------------------------------------------------------------------
45
+ -----------------------------------------------------------
46
+ RendersComponentInView: test_Renders_component_successfully
47
+ -----------------------------------------------------------
48
+ Started GET "/" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
49
+ Processing by HomeController#index as HTML
50
+ Rendering home/index.html.erb within layouts/application
51
+ Rendered app/components/header/_header.html.erb (0.9ms)
52
+ Rendered home/index.html.erb within layouts/application (10.2ms)
53
+ Completed 200 OK in 30ms (Views: 22.4ms)
1
54
  ---------------------------------------
2
55
  MountainViewTest: test_engine_is_loaded
3
56
  ---------------------------------------
4
57
  ------------------------------------------------------
5
- MountainViewTest: test_stylesheets_are_properly_served
58
+ MountainViewTest: test_javascripts_are_properly_served
6
59
  ------------------------------------------------------
7
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
8
- MountainView: stylesheet not found for component 'paragraph'
9
- -----------------------------------------------
10
- MountainViewTest: test_shows_specific_component
11
- -----------------------------------------------
12
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
60
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
61
+ -----------------------------------------------------------------------------
62
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
63
+ -----------------------------------------------------------------------------
64
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
13
65
  Processing by MountainView::StyleguideController#show as HTML
14
66
  Parameters: {"id"=>"header"}
15
- Rendered app/components/header/_header.html.erb (2.2ms)
67
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
68
+ Rendered app/components/header/_header.html.erb (2.4ms)
16
69
  Rendered app/components/header/_header.html.erb (0.4ms)
17
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (19.0ms)
18
- MountainView: javascript not found for component 'paragraph'
19
- Completed 200 OK in 80ms (Views: 80.1ms)
70
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (14.1ms)
71
+ Completed 200 OK in 21ms (Views: 16.8ms)
72
+ -----------------------------------------------------------------------------------
73
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
74
+ -----------------------------------------------------------------------------------
75
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
76
+ Processing by MountainView::StyleguideController#show as HTML
77
+ Parameters: {"id"=>"something"}
78
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
79
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.9ms)
80
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.2ms)
81
+ Completed 200 OK in 9ms (Views: 8.5ms)
20
82
  -------------------------------------------------------------
21
83
  MountainViewTest: test_global_stylesheets_are_properly_served
22
84
  -------------------------------------------------------------
23
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
24
- ------------------------------------------------------
25
- MountainViewTest: test_javascripts_are_properly_served
26
- ------------------------------------------------------
27
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
85
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
28
86
  -------------------------------------------------------------------------------
29
87
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
30
88
  -------------------------------------------------------------------------------
31
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
89
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
32
90
  Processing by MountainView::StyleguideController#show as HTML
33
91
  Parameters: {"id"=>"breadcrumbs"}
34
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.5ms)
35
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.5ms)
36
- Completed 200 OK in 6ms (Views: 5.5ms)
37
- -----------------------------------------------------------------------------
38
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
39
- -----------------------------------------------------------------------------
40
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
92
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
93
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.6ms)
94
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.0ms)
95
+ Completed 200 OK in 4ms (Views: 4.3ms)
96
+ ------------------------------------------------------
97
+ MountainViewTest: test_stylesheets_are_properly_served
98
+ ------------------------------------------------------
99
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
100
+ -----------------------------------------------
101
+ MountainViewTest: test_shows_specific_component
102
+ -----------------------------------------------
103
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
41
104
  Processing by MountainView::StyleguideController#show as HTML
42
105
  Parameters: {"id"=>"header"}
43
- Rendered app/components/header/_header.html.erb (0.3ms)
106
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
44
107
  Rendered app/components/header/_header.html.erb (0.2ms)
45
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (7.7ms)
46
- Completed 200 OK in 10ms (Views: 9.7ms)
108
+ Rendered app/components/header/_header.html.erb (5.5ms)
109
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.1ms)
110
+ Completed 200 OK in 15ms (Views: 14.7ms)
47
111
  ---------------------------------------
48
112
  MountainViewTest: test_shows_styleguide
49
113
  ---------------------------------------
50
- Started GET "/mountain_view" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
114
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:30:44 -0300
51
115
  Processing by MountainView::StyleguideController#index as HTML
52
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
53
- Completed 200 OK in 4ms (Views: 4.3ms)
54
- -----------------------------------------------------------------------------------
55
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
56
- -----------------------------------------------------------------------------------
57
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
58
- Processing by MountainView::StyleguideController#show as HTML
59
- Parameters: {"id"=>"something"}
60
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.0ms)
61
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
116
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
117
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
62
118
  Completed 200 OK in 2ms (Views: 2.3ms)
63
- -------------------------------------------------
64
- MountainViewComponentTest: test_stubs_extra_info?
65
- -------------------------------------------------
66
- --------------------------------------
67
- MountainViewComponentTest: test_stubs?
68
- --------------------------------------
119
+ ------------------------------------------------------------------------------------------
120
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
121
+ ------------------------------------------------------------------------------------------
122
+ Rendered app/components/yielder/_yielder.html.erb (0.3ms)
123
+ --------------------------------------------------------------------
124
+ MountainView::ComponentHelperTest: test_renders_the_proper_component
125
+ --------------------------------------------------------------------
126
+ Rendered app/components/header/_header.html.erb (0.5ms)
127
+ -------------------------------------------------------------------
128
+ MountainView::ComponentHelperTest: test_renders_when_passed_a_block
129
+ -------------------------------------------------------------------
130
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
131
+ -------------------------------------------------------------------------------------
132
+ MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
133
+ -------------------------------------------------------------------------------------
134
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
135
+ -------------------------------------------------------------------------------
136
+ MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
137
+ -------------------------------------------------------------------------------
138
+ Rendered app/components/header/_header.html.erb (0.1ms)
139
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
140
+ -----------------------------------------------------------------------------
141
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
142
+ -----------------------------------------------------------------------------
143
+ Rendered app/components/header/_header.html.erb (0.1ms)
69
144
  -----------------------------------------------
70
- MountainViewComponentTest: test_component_stubs
145
+ MountainViewComponentTest: test_humanized_title
71
146
  -----------------------------------------------
72
147
  -----------------------------------------------------
73
148
  MountainViewComponentTest: test_stubs_correct_format?
74
149
  -----------------------------------------------------
75
- ------------------------------------
76
- MountainViewComponentTest: test_name
77
- ------------------------------------
78
150
  ------------------------------------------------
79
- MountainViewComponentTest: test_stubs_extra_info
151
+ MountainViewComponentTest: test_component_stubs?
80
152
  ------------------------------------------------
81
153
  ------------------------------------------
82
154
  MountainViewComponentTest: test_stubs_file
83
155
  ------------------------------------------
84
- -----------------------------------------------
85
- MountainViewComponentTest: test_humanized_title
86
- -----------------------------------------------
87
156
  ------------------------------------------------
88
157
  MountainViewComponentTest: test_styleguide_stubs
89
158
  ------------------------------------------------
159
+ ------------------------------------
160
+ MountainViewComponentTest: test_name
161
+ ------------------------------------
162
+ --------------------------------------
163
+ MountainViewComponentTest: test_stubs?
164
+ --------------------------------------
90
165
  ------------------------------------------------
91
- MountainViewComponentTest: test_component_stubs?
166
+ MountainViewComponentTest: test_stubs_extra_info
92
167
  ------------------------------------------------
93
- -------------------------------------------------------------------
94
- MountainViewConfigurationTest: test_set_custom_included_stylesheets
95
- -------------------------------------------------------------------
96
- ----------------------------------------------------------------------------
97
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
98
- ----------------------------------------------------------------------------
99
- --------------------------------------------------------------------------------------------
100
- MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
101
- --------------------------------------------------------------------------------------------
102
- --------------------------------------------------------------
103
- MountainViewConfigurationTest: test_set_custom_styleguide_path
104
- --------------------------------------------------------------
168
+ -------------------------------------------------
169
+ MountainViewComponentTest: test_stubs_extra_info?
170
+ -------------------------------------------------
171
+ -----------------------------------------------
172
+ MountainViewComponentTest: test_component_stubs
173
+ -----------------------------------------------
174
+ ---------------------------------------------------------------------------------
175
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
176
+ ---------------------------------------------------------------------------------
177
+ -----------------------------------------------------------------------------------------
178
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
179
+ -----------------------------------------------------------------------------------------
180
+ ----------------------------------------------------------------
181
+ MountainView::PresenterTest: test_exposes_properties_as_provided
182
+ ----------------------------------------------------------------
183
+ -------------------------------------------------------------------------------
184
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
185
+ -------------------------------------------------------------------------------
186
+ -----------------------------------------------------------------------
187
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
188
+ -----------------------------------------------------------------------
105
189
  ------------------------------------------------------------------
106
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
190
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
107
191
  ------------------------------------------------------------------
108
- --------------------------------------------------------
109
- ComponentGeneratorTest: test_Generates_different_engines
110
- --------------------------------------------------------
192
+ -------------------------------------------------------------------------
193
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
194
+ -------------------------------------------------------------------------
111
195
  -------------------------------------------------------------------------
112
196
  MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
113
197
  -------------------------------------------------------------------------
114
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
198
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-01 14:31:03 -0300
115
199
  Processing by MountainView::StyleguideController#index as HTML
116
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
117
- Completed 200 OK in 3ms (Views: 2.5ms)
200
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
201
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (3.7ms)
202
+ MountainView: stylesheet not found for component 'paragraph'
203
+ MountainView: javascript not found for component 'paragraph'
204
+ Completed 200 OK in 192ms (Views: 189.6ms)
118
205
  -----------------------------------------------------
119
206
  MountedEngineTest: test_Has_been_mounted_successfully
120
207
  -----------------------------------------------------
121
- Started GET "/mountain_view" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
208
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:31:03 -0300
122
209
  Processing by MountainView::StyleguideController#index as HTML
123
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
124
- Completed 200 OK in 3ms (Views: 3.0ms)
210
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
211
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
212
+ Completed 200 OK in 3ms (Views: 2.7ms)
125
213
  ------------------------------------------------
126
214
  MountedEngineTest: test_Has_the_styleguide_route
127
215
  ------------------------------------------------
128
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-04-02 17:43:40 +0200
216
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-01 14:31:03 -0300
129
217
  Processing by MountainView::StyleguideController#index as HTML
130
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.2ms)
131
- Completed 200 OK in 2ms (Views: 2.0ms)
218
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
219
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
220
+ Completed 200 OK in 4ms (Views: 3.9ms)
221
+ -------------------------------------------------------------------------
222
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
223
+ -------------------------------------------------------------------------
132
224
  --------------------------------------------------------------------
133
225
  MountainView::ComponentHelperTest: test_renders_the_proper_component
134
226
  --------------------------------------------------------------------
135
- Rendered app/components/header/_header.html.erb (0.8ms)
136
- -----------------------------------------------------------------------------------------
137
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
138
- -----------------------------------------------------------------------------------------
227
+ Rendered app/components/header/_header.html.erb (0.4ms)
228
+ ------------------------------------------------------------------------------------------
229
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
230
+ ------------------------------------------------------------------------------------------
231
+ Rendered app/components/yielder/_yielder.html.erb (0.4ms)
232
+ -----------------------------------------------------------------------------
233
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
234
+ -----------------------------------------------------------------------------
235
+ Rendered app/components/header/_header.html.erb (0.6ms)
236
+ -------------------------------------------------------------------
237
+ MountainView::ComponentHelperTest: test_renders_when_passed_a_block
238
+ -------------------------------------------------------------------
239
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
139
240
  -------------------------------------------------------------------------------
140
- MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
241
+ MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
141
242
  -------------------------------------------------------------------------------
142
- ----------------------------------------------------------------
143
- MountainView::PresenterTest: test_exposes_properties_as_provided
144
- ----------------------------------------------------------------
145
- -----------------------------------------------------------------------
146
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
147
- -----------------------------------------------------------------------
148
- ------------------------------------------------------------------
149
- MountainView::PresenterTest: test_returns_the_correct_partial_path
150
- ------------------------------------------------------------------
151
- ------------------------------------------------------------------
152
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
153
- ------------------------------------------------------------------
154
- --------------------------------------------------------
155
- ComponentGeneratorTest: test_Generates_different_engines
156
- --------------------------------------------------------
157
- -------------------------------------------------
158
- MountainViewComponentTest: test_stubs_extra_info?
159
- -------------------------------------------------
160
- -----------------------------------------------------
161
- MountainViewComponentTest: test_stubs_correct_format?
162
- -----------------------------------------------------
243
+ Rendered app/components/header/_header.html.erb (0.1ms)
244
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
245
+ -------------------------------------------------------------------------------------
246
+ MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
247
+ -------------------------------------------------------------------------------------
248
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
249
+ -----------------------------------------------
250
+ MountainViewComponentTest: test_humanized_title
251
+ -----------------------------------------------
163
252
  ------------------------------------------------
164
253
  MountainViewComponentTest: test_stubs_extra_info
165
254
  ------------------------------------------------
166
- ------------------------------------------------
167
- MountainViewComponentTest: test_component_stubs?
168
- ------------------------------------------------
255
+ -----------------------------------------------------
256
+ MountainViewComponentTest: test_stubs_correct_format?
257
+ -----------------------------------------------------
169
258
  ------------------------------------------
170
259
  MountainViewComponentTest: test_stubs_file
171
260
  ------------------------------------------
261
+ ------------------------------------------------
262
+ MountainViewComponentTest: test_styleguide_stubs
263
+ ------------------------------------------------
172
264
  -----------------------------------------------
173
265
  MountainViewComponentTest: test_component_stubs
174
266
  -----------------------------------------------
175
- ------------------------------------
176
- MountainViewComponentTest: test_name
177
- ------------------------------------
267
+ ------------------------------------------------
268
+ MountainViewComponentTest: test_component_stubs?
269
+ ------------------------------------------------
178
270
  --------------------------------------
179
271
  MountainViewComponentTest: test_stubs?
180
272
  --------------------------------------
181
- ------------------------------------------------
182
- MountainViewComponentTest: test_styleguide_stubs
183
- ------------------------------------------------
184
- -----------------------------------------------
185
- MountainViewComponentTest: test_humanized_title
186
- -----------------------------------------------
187
- -------------------------------------------------------------------
188
- MountainViewConfigurationTest: test_set_custom_included_stylesheets
189
- -------------------------------------------------------------------
190
- --------------------------------------------------------------------------------------------
191
- MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
192
- --------------------------------------------------------------------------------------------
193
- ----------------------------------------------------------------------------
194
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
195
- ----------------------------------------------------------------------------
196
- --------------------------------------------------------------
197
- MountainViewConfigurationTest: test_set_custom_styleguide_path
198
- --------------------------------------------------------------
199
- ---------------------------------------
200
- MountainViewTest: test_engine_is_loaded
201
- ---------------------------------------
202
- -------------------------------------------------------------
203
- MountainViewTest: test_global_stylesheets_are_properly_served
204
- -------------------------------------------------------------
205
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
206
- MountainView: stylesheet not found for component 'paragraph'
207
- -----------------------------------------------------------------------------------
208
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
209
- -----------------------------------------------------------------------------------
210
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
211
- Processing by MountainView::StyleguideController#show as HTML
212
- Parameters: {"id"=>"something"}
213
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.5ms)
214
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (9.6ms)
215
- MountainView: javascript not found for component 'paragraph'
216
- Completed 200 OK in 92ms (Views: 91.2ms)
217
- -----------------------------------------------------------------------------
218
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
219
- -----------------------------------------------------------------------------
220
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
221
- Processing by MountainView::StyleguideController#show as HTML
222
- Parameters: {"id"=>"header"}
223
- Rendered app/components/header/_header.html.erb (2.2ms)
224
- Rendered app/components/header/_header.html.erb (0.2ms)
225
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (14.4ms)
226
- Completed 200 OK in 18ms (Views: 17.7ms)
227
- ---------------------------------------
228
- MountainViewTest: test_shows_styleguide
229
- ---------------------------------------
230
- Started GET "/mountain_view" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
231
- Processing by MountainView::StyleguideController#index as HTML
232
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
233
- Completed 200 OK in 5ms (Views: 4.4ms)
234
- ------------------------------------------------------
235
- MountainViewTest: test_stylesheets_are_properly_served
236
- ------------------------------------------------------
237
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
238
- ------------------------------------------------------
239
- MountainViewTest: test_javascripts_are_properly_served
240
- ------------------------------------------------------
241
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
242
- -----------------------------------------------
243
- MountainViewTest: test_shows_specific_component
244
- -----------------------------------------------
245
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
246
- Processing by MountainView::StyleguideController#show as HTML
247
- Parameters: {"id"=>"header"}
248
- Rendered app/components/header/_header.html.erb (0.3ms)
249
- Rendered app/components/header/_header.html.erb (0.2ms)
250
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (9.0ms)
251
- Completed 200 OK in 11ms (Views: 11.2ms)
252
- -------------------------------------------------------------------------------
253
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
254
- -------------------------------------------------------------------------------
255
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
256
- Processing by MountainView::StyleguideController#show as HTML
257
- Parameters: {"id"=>"breadcrumbs"}
258
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.1ms)
259
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.7ms)
260
- Completed 200 OK in 3ms (Views: 2.9ms)
261
- -------------------------------------------------------------------------------
262
- MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
263
- -------------------------------------------------------------------------------
264
- Rendered app/components/header/_header.html.erb (1.9ms)
265
- Rendered app/components/yielder/_yielder.html.erb (0.5ms)
266
- ------------------------------------------------------------------------------------------
267
- MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
268
- ------------------------------------------------------------------------------------------
269
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
270
- --------------------------------------------------------------------
271
- MountainView::ComponentHelperTest: test_renders_the_proper_component
272
- --------------------------------------------------------------------
273
- Rendered app/components/header/_header.html.erb (0.2ms)
274
- -------------------------------------------------------------------
275
- MountainView::ComponentHelperTest: test_renders_when_passed_a_block
276
- -------------------------------------------------------------------
277
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
278
- -------------------------------------------------------------------------------------
279
- MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
280
- -------------------------------------------------------------------------------------
281
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
282
- -------------------------------------------------------------------------------
283
- MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
284
- -------------------------------------------------------------------------------
285
- -----------------------------------------------------------------------------------------
286
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
287
- -----------------------------------------------------------------------------------------
288
- -----------------------------------------------------------------------
289
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
290
- -----------------------------------------------------------------------
273
+ -------------------------------------------------
274
+ MountainViewComponentTest: test_stubs_extra_info?
275
+ -------------------------------------------------
276
+ ------------------------------------
277
+ MountainViewComponentTest: test_name
278
+ ------------------------------------
291
279
  ------------------------------------------------------------------
292
- MountainView::PresenterTest: test_returns_the_correct_partial_path
280
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
293
281
  ------------------------------------------------------------------
294
- ----------------------------------------------------------------
295
- MountainView::PresenterTest: test_exposes_properties_as_provided
296
- ----------------------------------------------------------------
297
- -------------------------------------------------------------------------
298
- MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
299
- -------------------------------------------------------------------------
300
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
301
- Processing by MountainView::StyleguideController#index as HTML
302
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
303
- Completed 200 OK in 3ms (Views: 3.3ms)
304
- -----------------------------------------------------
305
- MountedEngineTest: test_Has_been_mounted_successfully
306
- -----------------------------------------------------
307
- Started GET "/mountain_view" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
308
- Processing by MountainView::StyleguideController#index as HTML
309
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
310
- Completed 200 OK in 3ms (Views: 3.1ms)
311
- ------------------------------------------------
312
- MountedEngineTest: test_Has_the_styleguide_route
313
- ------------------------------------------------
314
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-05-09 18:04:16 +0200
315
- Processing by MountainView::StyleguideController#index as HTML
316
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
317
- Completed 200 OK in 3ms (Views: 2.6ms)
318
282
  --------------------------------------------------------
319
283
  ComponentGeneratorTest: test_Generates_different_engines
320
284
  --------------------------------------------------------
321
- ------------------------------------------------------------------
322
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
323
- ------------------------------------------------------------------
324
285
  -----------------------------------------------------------
325
286
  RendersComponentInView: test_Renders_component_successfully
326
287
  -----------------------------------------------------------
327
- Started GET "/" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
288
+ Started GET "/" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
328
289
  Processing by HomeController#index as HTML
329
- Rendered app/components/header/_header.html.erb (0.9ms)
330
- Rendered home/index.html.erb within layouts/application (13.7ms)
331
- MountainView: stylesheet not found for component 'paragraph'
332
- Completed 200 OK in 274ms (Views: 273.3ms)
333
- --------------------------------------------------------------------------------------------
334
- MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
335
- --------------------------------------------------------------------------------------------
290
+ Rendering home/index.html.erb within layouts/application
291
+ Rendered app/components/header/_header.html.erb (0.4ms)
292
+ Rendered home/index.html.erb within layouts/application (7.7ms)
293
+ Completed 200 OK in 17ms (Views: 14.8ms)
294
+ --------------------------------------------------------------
295
+ MountainViewConfigurationTest: test_set_custom_styleguide_path
296
+ --------------------------------------------------------------
336
297
  ----------------------------------------------------------------------------
337
298
  MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
338
299
  ----------------------------------------------------------------------------
339
300
  -------------------------------------------------------------------
340
301
  MountainViewConfigurationTest: test_set_custom_included_stylesheets
341
302
  -------------------------------------------------------------------
342
- --------------------------------------------------------------
343
- MountainViewConfigurationTest: test_set_custom_styleguide_path
344
- --------------------------------------------------------------
345
- -----------------------------------------------
346
- MountainViewTest: test_shows_specific_component
347
- -----------------------------------------------
348
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
349
- Processing by MountainView::StyleguideController#show as HTML
350
- Parameters: {"id"=>"header"}
351
- Rendered app/components/header/_header.html.erb (2.4ms)
352
- Rendered app/components/header/_header.html.erb (0.4ms)
353
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (24.4ms)
354
- MountainView: javascript not found for component 'paragraph'
355
- Completed 200 OK in 132ms (Views: 131.8ms)
356
- ------------------------------------------------------
357
- MountainViewTest: test_stylesheets_are_properly_served
358
- ------------------------------------------------------
359
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
303
+ --------------------------------------------------------------------------------------------
304
+ MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
305
+ --------------------------------------------------------------------------------------------
306
+ ---------------------------------------------------------------------------------
307
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
308
+ ---------------------------------------------------------------------------------
309
+ -----------------------------------------------------------------------------------------
310
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
311
+ -----------------------------------------------------------------------------------------
312
+ -----------------------------------------------------------------------
313
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
314
+ -----------------------------------------------------------------------
315
+ -------------------------------------------------------------------------------
316
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
317
+ -------------------------------------------------------------------------------
318
+ ------------------------------------------------------------------
319
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
320
+ ------------------------------------------------------------------
321
+ ----------------------------------------------------------------
322
+ MountainView::PresenterTest: test_exposes_properties_as_provided
323
+ ----------------------------------------------------------------
324
+ ---------------------------------------
325
+ MountainViewTest: test_shows_styleguide
326
+ ---------------------------------------
327
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
328
+ Processing by MountainView::StyleguideController#index as HTML
329
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
330
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
331
+ Completed 200 OK in 4ms (Views: 3.5ms)
360
332
  ------------------------------------------------------
361
333
  MountainViewTest: test_javascripts_are_properly_served
362
334
  ------------------------------------------------------
363
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
364
- ---------------------------------------
365
- MountainViewTest: test_engine_is_loaded
366
- ---------------------------------------
367
- -----------------------------------------------------------------------------
368
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
369
- -----------------------------------------------------------------------------
370
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
335
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
336
+ -------------------------------------------------------------
337
+ MountainViewTest: test_global_stylesheets_are_properly_served
338
+ -------------------------------------------------------------
339
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
340
+ -------------------------------------------------------------------------------
341
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
342
+ -------------------------------------------------------------------------------
343
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
371
344
  Processing by MountainView::StyleguideController#show as HTML
372
- Parameters: {"id"=>"header"}
373
- Rendered app/components/header/_header.html.erb (1.7ms)
374
- Rendered app/components/header/_header.html.erb (0.6ms)
375
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (15.0ms)
376
- Completed 200 OK in 21ms (Views: 20.5ms)
345
+ Parameters: {"id"=>"breadcrumbs"}
346
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
347
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.4ms)
348
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.0ms)
349
+ Completed 200 OK in 13ms (Views: 5.9ms)
377
350
  ---------------------------------------
378
- MountainViewTest: test_shows_styleguide
351
+ MountainViewTest: test_engine_is_loaded
379
352
  ---------------------------------------
380
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:11:00 +0200
381
- Processing by MountainView::StyleguideController#index as HTML
382
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.1ms)
383
- Completed 200 OK in 7ms (Views: 6.8ms)
384
353
  -----------------------------------------------------------------------------------
385
354
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
386
355
  -----------------------------------------------------------------------------------
387
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
356
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
388
357
  Processing by MountainView::StyleguideController#show as HTML
389
358
  Parameters: {"id"=>"something"}
390
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (1.6ms)
391
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.0ms)
392
- Completed 200 OK in 11ms (Views: 10.7ms)
393
- -------------------------------------------------------------------------------
394
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
395
- -------------------------------------------------------------------------------
396
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
359
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
360
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.1ms)
361
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.6ms)
362
+ Completed 200 OK in 2ms (Views: 2.2ms)
363
+ -----------------------------------------------
364
+ MountainViewTest: test_shows_specific_component
365
+ -----------------------------------------------
366
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
397
367
  Processing by MountainView::StyleguideController#show as HTML
398
- Parameters: {"id"=>"breadcrumbs"}
399
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
400
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.5ms)
401
- Completed 200 OK in 9ms (Views: 8.5ms)
402
- -------------------------------------------------------------
403
- MountainViewTest: test_global_stylesheets_are_properly_served
404
- -------------------------------------------------------------
405
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
406
- -----------------------------------------------------
407
- MountedEngineTest: test_Has_been_mounted_successfully
408
- -----------------------------------------------------
409
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
410
- Processing by MountainView::StyleguideController#index as HTML
411
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
412
- Completed 200 OK in 16ms (Views: 15.5ms)
413
- -------------------------------------------------------------------------
414
- MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
415
- -------------------------------------------------------------------------
416
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
417
- Processing by MountainView::StyleguideController#index as HTML
418
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
419
- Completed 200 OK in 7ms (Views: 6.6ms)
420
- ------------------------------------------------
421
- MountedEngineTest: test_Has_the_styleguide_route
422
- ------------------------------------------------
423
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-08-08 18:11:01 +0200
424
- Processing by MountainView::StyleguideController#index as HTML
425
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
426
- Completed 200 OK in 3ms (Views: 2.7ms)
427
- ------------------------------------------------
428
- MountainViewComponentTest: test_stubs_extra_info
429
- ------------------------------------------------
430
- -------------------------------------------------
431
- MountainViewComponentTest: test_stubs_extra_info?
432
- -------------------------------------------------
368
+ Parameters: {"id"=>"header"}
369
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
370
+ Rendered app/components/header/_header.html.erb (1.2ms)
371
+ Rendered app/components/header/_header.html.erb (0.1ms)
372
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (8.2ms)
373
+ Completed 200 OK in 10ms (Views: 10.1ms)
374
+ -----------------------------------------------------------------------------
375
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
376
+ -----------------------------------------------------------------------------
377
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
378
+ Processing by MountainView::StyleguideController#show as HTML
379
+ Parameters: {"id"=>"header"}
380
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
381
+ Rendered app/components/header/_header.html.erb (0.1ms)
382
+ Rendered app/components/header/_header.html.erb (0.1ms)
383
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
384
+ Completed 200 OK in 7ms (Views: 6.8ms)
385
+ ------------------------------------------------------
386
+ MountainViewTest: test_stylesheets_are_properly_served
387
+ ------------------------------------------------------
388
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:31:04 -0300
389
+ -----------------------------------------------------------
390
+ RendersComponentInView: test_Renders_component_successfully
391
+ -----------------------------------------------------------
392
+ Started GET "/" for 127.0.0.1 at 2018-12-01 14:31:50 -0300
393
+ Processing by HomeController#index as HTML
394
+ Rendering home/index.html.erb within layouts/application
395
+ Rendered app/components/header/_header.html.erb (0.4ms)
396
+ Rendered home/index.html.erb within layouts/application (6.2ms)
397
+ MountainView: stylesheet not found for component 'paragraph'
398
+ MountainView: javascript not found for component 'paragraph'
399
+ Completed 200 OK in 224ms (Views: 221.5ms)
433
400
  -----------------------------------------------
434
401
  MountainViewComponentTest: test_component_stubs
435
402
  -----------------------------------------------
436
- ------------------------------------------------
437
- MountainViewComponentTest: test_component_stubs?
438
- ------------------------------------------------
403
+ ------------------------------------------
404
+ MountainViewComponentTest: test_stubs_file
405
+ ------------------------------------------
439
406
  -----------------------------------------------------
440
407
  MountainViewComponentTest: test_stubs_correct_format?
441
408
  -----------------------------------------------------
442
- ------------------------------------
443
- MountainViewComponentTest: test_name
444
- ------------------------------------
445
409
  --------------------------------------
446
410
  MountainViewComponentTest: test_stubs?
447
411
  --------------------------------------
448
412
  -----------------------------------------------
449
413
  MountainViewComponentTest: test_humanized_title
450
414
  -----------------------------------------------
451
- ------------------------------------------------
452
- MountainViewComponentTest: test_styleguide_stubs
453
- ------------------------------------------------
454
- ------------------------------------------
455
- MountainViewComponentTest: test_stubs_file
456
- ------------------------------------------
457
- -------------------------------------------------------------------
458
- MountainView::ComponentHelperTest: test_renders_when_passed_a_block
459
- -------------------------------------------------------------------
460
- Rendered app/components/yielder/_yielder.html.erb (0.6ms)
461
- -------------------------------------------------------------------------------------
462
- MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
463
- -------------------------------------------------------------------------------------
464
- Rendered app/components/yielder/_yielder.html.erb (0.2ms)
465
- --------------------------------------------------------------------
466
- MountainView::ComponentHelperTest: test_renders_the_proper_component
467
- --------------------------------------------------------------------
468
- Rendered app/components/header/_header.html.erb (1.2ms)
469
- -------------------------------------------------------------------------------
470
- MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
471
- -------------------------------------------------------------------------------
472
- Rendered app/components/header/_header.html.erb (0.3ms)
473
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
474
- ------------------------------------------------------------------------------------------
475
- MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
476
- ------------------------------------------------------------------------------------------
477
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
478
- -------------------------------------------------------------------------
479
- ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
480
- -------------------------------------------------------------------------
481
- ----------------------------------------------------------------
482
- MountainView::PresenterTest: test_exposes_properties_as_provided
483
- ----------------------------------------------------------------
484
- -----------------------------------------------------------------------------------------
485
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
486
- -----------------------------------------------------------------------------------------
487
- ------------------------------------------------------------------
488
- MountainView::PresenterTest: test_returns_the_correct_partial_path
489
- ------------------------------------------------------------------
490
- -----------------------------------------------------------------------
491
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
492
- -----------------------------------------------------------------------
493
- -------------------------------------------------------------------------------
494
- MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
495
- -------------------------------------------------------------------------------
496
- -----------------------------------------------------
497
- MountedEngineTest: test_Has_been_mounted_successfully
498
- -----------------------------------------------------
499
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:11:43 +0200
500
- Processing by MountainView::StyleguideController#index as HTML
501
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (2.0ms)
502
- MountainView: stylesheet not found for component 'paragraph'
503
- MountainView: javascript not found for component 'paragraph'
504
- Completed 200 OK in 369ms (Views: 368.7ms)
505
- ------------------------------------------------
506
- MountedEngineTest: test_Has_the_styleguide_route
507
- ------------------------------------------------
508
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
509
- Processing by MountainView::StyleguideController#index as HTML
510
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
511
- Completed 200 OK in 6ms (Views: 6.1ms)
512
- -------------------------------------------------------------------------
513
- MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
514
- -------------------------------------------------------------------------
515
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
516
- Processing by MountainView::StyleguideController#index as HTML
517
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
518
- Completed 200 OK in 5ms (Views: 4.4ms)
519
- ------------------------------------------------------------------
520
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
521
- ------------------------------------------------------------------
522
- --------------------------------------------------------
523
- ComponentGeneratorTest: test_Generates_different_engines
524
- --------------------------------------------------------
525
- -----------------------------------------------------------
526
- RendersComponentInView: test_Renders_component_successfully
527
- -----------------------------------------------------------
528
- Started GET "/" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
529
- Processing by HomeController#index as HTML
530
- Rendered app/components/header/_header.html.erb (0.7ms)
531
- Rendered home/index.html.erb within layouts/application (16.6ms)
532
- Completed 200 OK in 45ms (Views: 45.3ms)
533
- --------------------------------------------------------------------------------------------
534
- MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
535
- --------------------------------------------------------------------------------------------
536
- ----------------------------------------------------------------------------
537
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
538
- ----------------------------------------------------------------------------
539
- -------------------------------------------------------------------
540
- MountainViewConfigurationTest: test_set_custom_included_stylesheets
541
- -------------------------------------------------------------------
542
- --------------------------------------------------------------
543
- MountainViewConfigurationTest: test_set_custom_styleguide_path
544
- --------------------------------------------------------------
545
415
  -------------------------------------------------
546
416
  MountainViewComponentTest: test_stubs_extra_info?
547
417
  -------------------------------------------------
548
418
  ------------------------------------------------
549
- MountainViewComponentTest: test_component_stubs?
419
+ MountainViewComponentTest: test_styleguide_stubs
550
420
  ------------------------------------------------
551
- --------------------------------------
552
- MountainViewComponentTest: test_stubs?
553
- --------------------------------------
554
421
  ------------------------------------
555
422
  MountainViewComponentTest: test_name
556
423
  ------------------------------------
@@ -558,702 +425,991 @@ MountainViewComponentTest: test_name
558
425
  MountainViewComponentTest: test_stubs_extra_info
559
426
  ------------------------------------------------
560
427
  ------------------------------------------------
561
- MountainViewComponentTest: test_styleguide_stubs
428
+ MountainViewComponentTest: test_component_stubs?
562
429
  ------------------------------------------------
563
- -----------------------------------------------
564
- MountainViewComponentTest: test_humanized_title
565
- -----------------------------------------------
566
- -----------------------------------------------------
567
- MountainViewComponentTest: test_stubs_correct_format?
568
- -----------------------------------------------------
569
- ------------------------------------------
570
- MountainViewComponentTest: test_stubs_file
571
- ------------------------------------------
572
- -----------------------------------------------
573
- MountainViewComponentTest: test_component_stubs
574
- -----------------------------------------------
575
- ----------------------------------------------------------------
576
- MountainView::PresenterTest: test_exposes_properties_as_provided
577
- ----------------------------------------------------------------
578
- -----------------------------------------------------------------------
579
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
580
- -----------------------------------------------------------------------
581
- -------------------------------------------------------------------------------
582
- MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
583
- -------------------------------------------------------------------------------
584
- -----------------------------------------------------------------------------------------
585
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
586
- -----------------------------------------------------------------------------------------
587
- ------------------------------------------------------------------
588
- MountainView::PresenterTest: test_returns_the_correct_partial_path
589
- ------------------------------------------------------------------
430
+ -------------------------------------------------------------------------
431
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
432
+ -------------------------------------------------------------------------
433
+ -------------------------------------------------------------------
434
+ MountainViewConfigurationTest: test_set_custom_included_stylesheets
435
+ -------------------------------------------------------------------
436
+ --------------------------------------------------------------
437
+ MountainViewConfigurationTest: test_set_custom_styleguide_path
438
+ --------------------------------------------------------------
439
+ --------------------------------------------------------------------------------------------
440
+ MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
441
+ --------------------------------------------------------------------------------------------
442
+ ----------------------------------------------------------------------------
443
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
444
+ ----------------------------------------------------------------------------
445
+ -----------------------------------------------------------------------------------
446
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
447
+ -----------------------------------------------------------------------------------
448
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-01 14:31:50 -0300
449
+ Processing by MountainView::StyleguideController#show as HTML
450
+ Parameters: {"id"=>"something"}
451
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
452
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (1.4ms)
453
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.0ms)
454
+ Completed 200 OK in 25ms (Views: 21.3ms)
590
455
  ---------------------------------------
591
456
  MountainViewTest: test_engine_is_loaded
592
457
  ---------------------------------------
593
- -------------------------------------------------------------
594
- MountainViewTest: test_global_stylesheets_are_properly_served
595
- -------------------------------------------------------------
596
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
458
+ ---------------------------------------
459
+ MountainViewTest: test_shows_styleguide
460
+ ---------------------------------------
461
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:31:50 -0300
462
+ Processing by MountainView::StyleguideController#index as HTML
463
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
464
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.9ms)
465
+ Completed 200 OK in 11ms (Views: 8.1ms)
597
466
  ------------------------------------------------------
598
467
  MountainViewTest: test_javascripts_are_properly_served
599
468
  ------------------------------------------------------
600
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
601
- ------------------------------------------------------
602
- MountainViewTest: test_stylesheets_are_properly_served
603
- ------------------------------------------------------
604
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
605
- -----------------------------------------------------------------------------
606
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
607
- -----------------------------------------------------------------------------
608
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
609
- Processing by MountainView::StyleguideController#show as HTML
610
- Parameters: {"id"=>"header"}
611
- Rendered app/components/header/_header.html.erb (2.0ms)
612
- Rendered app/components/header/_header.html.erb (0.7ms)
613
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (17.7ms)
614
- Completed 200 OK in 23ms (Views: 23.2ms)
615
- -----------------------------------------------------------------------------------
616
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
617
- -----------------------------------------------------------------------------------
618
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
469
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
470
+ ------------------------------------------------------
471
+ MountainViewTest: test_stylesheets_are_properly_served
472
+ ------------------------------------------------------
473
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
474
+ -------------------------------------------------------------------------------
475
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
476
+ -------------------------------------------------------------------------------
477
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
619
478
  Processing by MountainView::StyleguideController#show as HTML
620
- Parameters: {"id"=>"something"}
621
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.9ms)
622
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.4ms)
623
- Completed 200 OK in 6ms (Views: 6.1ms)
479
+ Parameters: {"id"=>"breadcrumbs"}
480
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
481
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
482
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
483
+ Completed 200 OK in 4ms (Views: 4.1ms)
484
+ -------------------------------------------------------------
485
+ MountainViewTest: test_global_stylesheets_are_properly_served
486
+ -------------------------------------------------------------
487
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
624
488
  -----------------------------------------------
625
489
  MountainViewTest: test_shows_specific_component
626
490
  -----------------------------------------------
627
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
491
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
628
492
  Processing by MountainView::StyleguideController#show as HTML
629
493
  Parameters: {"id"=>"header"}
630
- Rendered app/components/header/_header.html.erb (0.3ms)
631
- Rendered app/components/header/_header.html.erb (0.3ms)
632
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (11.3ms)
633
- Completed 200 OK in 14ms (Views: 14.1ms)
494
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
495
+ Rendered app/components/header/_header.html.erb (1.8ms)
496
+ Rendered app/components/header/_header.html.erb (0.2ms)
497
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (13.0ms)
498
+ Completed 200 OK in 17ms (Views: 17.0ms)
499
+ -----------------------------------------------------------------------------
500
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
501
+ -----------------------------------------------------------------------------
502
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
503
+ Processing by MountainView::StyleguideController#show as HTML
504
+ Parameters: {"id"=>"header"}
505
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
506
+ Rendered app/components/header/_header.html.erb (0.5ms)
507
+ Rendered app/components/header/_header.html.erb (0.1ms)
508
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (22.2ms)
509
+ Completed 200 OK in 27ms (Views: 26.8ms)
634
510
  -------------------------------------------------------------------------------
635
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
511
+ MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
636
512
  -------------------------------------------------------------------------------
637
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
638
- Processing by MountainView::StyleguideController#show as HTML
639
- Parameters: {"id"=>"breadcrumbs"}
640
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.1ms)
641
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.6ms)
642
- Completed 200 OK in 6ms (Views: 5.1ms)
643
- ---------------------------------------
644
- MountainViewTest: test_shows_styleguide
645
- ---------------------------------------
646
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:11:44 +0200
647
- Processing by MountainView::StyleguideController#index as HTML
648
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.1ms)
649
- Completed 200 OK in 5ms (Views: 4.4ms)
513
+ Rendered app/components/header/_header.html.erb (0.8ms)
514
+ Rendered app/components/yielder/_yielder.html.erb (0.6ms)
515
+ -----------------------------------------------------------------------------
516
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
517
+ -----------------------------------------------------------------------------
518
+ Rendered app/components/header/_header.html.erb (0.1ms)
519
+ -------------------------------------------------------------------------------------
520
+ MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
521
+ -------------------------------------------------------------------------------------
522
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
650
523
  ------------------------------------------------------------------------------------------
651
524
  MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
652
525
  ------------------------------------------------------------------------------------------
653
- Rendered app/components/yielder/_yielder.html.erb (0.8ms)
654
- -------------------------------------------------------------------------------
655
- MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
656
- -------------------------------------------------------------------------------
657
- Rendered app/components/header/_header.html.erb (0.7ms)
658
526
  Rendered app/components/yielder/_yielder.html.erb (0.0ms)
659
527
  --------------------------------------------------------------------
660
528
  MountainView::ComponentHelperTest: test_renders_the_proper_component
661
529
  --------------------------------------------------------------------
662
- Rendered app/components/header/_header.html.erb (0.2ms)
530
+ Rendered app/components/header/_header.html.erb (0.1ms)
663
531
  -------------------------------------------------------------------
664
532
  MountainView::ComponentHelperTest: test_renders_when_passed_a_block
665
533
  -------------------------------------------------------------------
666
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
667
- -------------------------------------------------------------------------------------
668
- MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
669
- -------------------------------------------------------------------------------------
670
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
534
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
535
+ ---------------------------------------------------------------------------------
536
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
537
+ ---------------------------------------------------------------------------------
671
538
  -------------------------------------------------------------------------
672
- ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
539
+ MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
673
540
  -------------------------------------------------------------------------
674
- -----------------------------------------------------------------------
675
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
676
- -----------------------------------------------------------------------
677
- -----------------------------------------------------------------------------------------
678
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
679
- -----------------------------------------------------------------------------------------
541
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
542
+ Processing by MountainView::StyleguideController#index as HTML
543
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
544
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
545
+ Completed 200 OK in 2ms (Views: 1.8ms)
546
+ ------------------------------------------------
547
+ MountedEngineTest: test_Has_the_styleguide_route
548
+ ------------------------------------------------
549
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
550
+ Processing by MountainView::StyleguideController#index as HTML
551
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
552
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
553
+ Completed 200 OK in 2ms (Views: 1.8ms)
554
+ -----------------------------------------------------
555
+ MountedEngineTest: test_Has_been_mounted_successfully
556
+ -----------------------------------------------------
557
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-01 14:31:51 -0300
558
+ Processing by MountainView::StyleguideController#index as HTML
559
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
560
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
561
+ Completed 200 OK in 2ms (Views: 1.7ms)
562
+ ------------------------------------------------------------------
563
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
564
+ ------------------------------------------------------------------
565
+ --------------------------------------------------------
566
+ ComponentGeneratorTest: test_Generates_different_engines
567
+ --------------------------------------------------------
568
+ ------------------------------------------------------------------
569
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
570
+ ------------------------------------------------------------------
680
571
  ----------------------------------------------------------------
681
572
  MountainView::PresenterTest: test_exposes_properties_as_provided
682
573
  ----------------------------------------------------------------
574
+ -----------------------------------------------------------------------
575
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
576
+ -----------------------------------------------------------------------
683
577
  -------------------------------------------------------------------------------
684
578
  MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
685
579
  -------------------------------------------------------------------------------
686
- ------------------------------------------------------------------
687
- MountainView::PresenterTest: test_returns_the_correct_partial_path
688
- ------------------------------------------------------------------
689
- --------------------------------------------------------------------
690
- MountainView::ComponentHelperTest: test_renders_the_proper_component
691
- --------------------------------------------------------------------
692
- Rendered app/components/header/_header.html.erb (3.1ms)
693
- -------------------------------------------------------------------------------
694
- MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
695
- -------------------------------------------------------------------------------
696
- Rendered app/components/header/_header.html.erb (0.3ms)
697
- Rendered app/components/yielder/_yielder.html.erb (0.5ms)
698
- -------------------------------------------------------------------------------------
699
- MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
700
- -------------------------------------------------------------------------------------
701
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
702
- -------------------------------------------------------------------
703
- MountainView::ComponentHelperTest: test_renders_when_passed_a_block
704
- -------------------------------------------------------------------
705
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
706
- ------------------------------------------------------------------------------------------
707
- MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
708
- ------------------------------------------------------------------------------------------
709
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
580
+ -----------------------------------------------------------------------------------------
581
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
582
+ -----------------------------------------------------------------------------------------
583
+ ----------------------------------------------------------------------------
584
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
585
+ ----------------------------------------------------------------------------
710
586
  --------------------------------------------------------------------------------------------
711
587
  MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
712
588
  --------------------------------------------------------------------------------------------
713
589
  -------------------------------------------------------------------
714
590
  MountainViewConfigurationTest: test_set_custom_included_stylesheets
715
591
  -------------------------------------------------------------------
716
- ----------------------------------------------------------------------------
717
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
718
- ----------------------------------------------------------------------------
719
592
  --------------------------------------------------------------
720
593
  MountainViewConfigurationTest: test_set_custom_styleguide_path
721
594
  --------------------------------------------------------------
722
- -----------------------------------------------------------
723
- RendersComponentInView: test_Renders_component_successfully
724
- -----------------------------------------------------------
725
- Started GET "/" for 127.0.0.1 at 2017-08-08 18:14:20 +0200
726
- Processing by HomeController#index as HTML
727
- Rendered app/components/header/_header.html.erb (0.7ms)
728
- Rendered home/index.html.erb within layouts/application (6.3ms)
729
- MountainView: stylesheet not found for component 'paragraph'
730
- Completed 200 OK in 264ms (Views: 264.0ms)
731
595
  ------------------------------------------------
732
- MountainViewComponentTest: test_styleguide_stubs
596
+ MountainViewComponentTest: test_stubs_extra_info
733
597
  ------------------------------------------------
734
- ------------------------------------------
735
- MountainViewComponentTest: test_stubs_file
736
- ------------------------------------------
737
- ------------------------------------
738
- MountainViewComponentTest: test_name
739
- ------------------------------------
740
598
  -----------------------------------------------
741
599
  MountainViewComponentTest: test_humanized_title
742
600
  -----------------------------------------------
601
+ -----------------------------------------------------
602
+ MountainViewComponentTest: test_stubs_correct_format?
603
+ -----------------------------------------------------
604
+ -----------------------------------------------
605
+ MountainViewComponentTest: test_component_stubs
606
+ -----------------------------------------------
607
+ ------------------------------------------
608
+ MountainViewComponentTest: test_stubs_file
609
+ ------------------------------------------
743
610
  ------------------------------------------------
744
- MountainViewComponentTest: test_stubs_extra_info
611
+ MountainViewComponentTest: test_styleguide_stubs
745
612
  ------------------------------------------------
746
- --------------------------------------
747
- MountainViewComponentTest: test_stubs?
748
- --------------------------------------
613
+ --------------------------------------------------------
614
+ MountainViewComponentTest: test_component_stubs_extended
615
+ --------------------------------------------------------
749
616
  -------------------------------------------------
750
617
  MountainViewComponentTest: test_stubs_extra_info?
751
618
  -------------------------------------------------
752
- -----------------------------------------------
753
- MountainViewComponentTest: test_component_stubs
754
- -----------------------------------------------
755
- -----------------------------------------------------
756
- MountainViewComponentTest: test_stubs_correct_format?
757
- -----------------------------------------------------
758
619
  ------------------------------------------------
759
620
  MountainViewComponentTest: test_component_stubs?
760
621
  ------------------------------------------------
622
+ --------------------------------------
623
+ MountainViewComponentTest: test_stubs?
624
+ --------------------------------------
625
+ ------------------------------------
626
+ MountainViewComponentTest: test_name
627
+ ------------------------------------
628
+ ---------------------------------------------------------------------------------
629
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
630
+ ---------------------------------------------------------------------------------
631
+ -------------------------------------------
632
+ MountainViewStubTest: test_meta_description
633
+ -------------------------------------------
634
+ -------------------------------------
635
+ MountainViewStubTest: test_meta_title
636
+ -------------------------------------
637
+ -------------------------------------
638
+ MountainViewStubTest: test_properties
639
+ -------------------------------------
640
+ ---------------------------------------
641
+ MountainViewStubTest: test_meta_classes
642
+ ---------------------------------------
643
+ -------------------------------------------------------------------------------
644
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
645
+ -------------------------------------------------------------------------------
646
+ ----------------------------------------------------------------
647
+ MountainView::PresenterTest: test_exposes_properties_as_provided
648
+ ----------------------------------------------------------------
649
+ -----------------------------------------------------------------------
650
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
651
+ -----------------------------------------------------------------------
652
+ -----------------------------------------------------------------------------------------
653
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
654
+ -----------------------------------------------------------------------------------------
655
+ ------------------------------------------------------------------
656
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
657
+ ------------------------------------------------------------------
658
+ -----------------------------------------------------------
659
+ RendersComponentInView: test_Renders_component_successfully
660
+ -----------------------------------------------------------
661
+ Started GET "/" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
662
+ Processing by HomeController#index as HTML
663
+ Rendering home/index.html.erb within layouts/application
664
+ Rendered app/components/header/_header.html.erb (0.8ms)
665
+ Rendered home/index.html.erb within layouts/application (10.6ms)
666
+ MountainView: stylesheet not found for component 'paragraph'
667
+ MountainView: javascript not found for component 'paragraph'
668
+ Completed 200 OK in 296ms (Views: 293.2ms)
669
+ -------------------------------------------------------------------------
670
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
671
+ -------------------------------------------------------------------------
761
672
  -------------------------------------------------------------------------
762
673
  MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
763
674
  -------------------------------------------------------------------------
764
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
675
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
765
676
  Processing by MountainView::StyleguideController#index as HTML
766
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.8ms)
767
- MountainView: javascript not found for component 'paragraph'
768
- Completed 200 OK in 81ms (Views: 81.1ms)
677
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
678
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (5.3ms)
679
+ Completed 200 OK in 12ms (Views: 10.0ms)
769
680
  -----------------------------------------------------
770
681
  MountedEngineTest: test_Has_been_mounted_successfully
771
682
  -----------------------------------------------------
772
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
683
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
773
684
  Processing by MountainView::StyleguideController#index as HTML
774
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
775
- Completed 200 OK in 4ms (Views: 4.3ms)
685
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
686
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
687
+ Completed 200 OK in 2ms (Views: 1.9ms)
776
688
  ------------------------------------------------
777
689
  MountedEngineTest: test_Has_the_styleguide_route
778
690
  ------------------------------------------------
779
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
691
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
692
+ Processing by MountainView::StyleguideController#index as HTML
693
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
694
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
695
+ Completed 200 OK in 2ms (Views: 1.8ms)
696
+ --------------------------------------------------------
697
+ ComponentGeneratorTest: test_Generates_different_engines
698
+ --------------------------------------------------------
699
+ ------------------------------------------------------------------
700
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
701
+ ------------------------------------------------------------------
702
+ -------------------------------------------------------------------------------------
703
+ MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
704
+ -------------------------------------------------------------------------------------
705
+ Rendered app/components/yielder/_yielder.html.erb (0.3ms)
706
+ -------------------------------------------------------------------
707
+ MountainView::ComponentHelperTest: test_renders_when_passed_a_block
708
+ -------------------------------------------------------------------
709
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
710
+ -------------------------------------------------------------------------------
711
+ MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
712
+ -------------------------------------------------------------------------------
713
+ Rendered app/components/header/_header.html.erb (0.6ms)
714
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
715
+ --------------------------------------------------------------------
716
+ MountainView::ComponentHelperTest: test_renders_the_proper_component
717
+ --------------------------------------------------------------------
718
+ Rendered app/components/header/_header.html.erb (0.1ms)
719
+ -----------------------------------------------------------------------------
720
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
721
+ -----------------------------------------------------------------------------
722
+ Rendered app/components/header/_header.html.erb (0.1ms)
723
+ ------------------------------------------------------------------------------------------
724
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
725
+ ------------------------------------------------------------------------------------------
726
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
727
+ ---------------------------------------
728
+ MountainViewTest: test_shows_styleguide
729
+ ---------------------------------------
730
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
780
731
  Processing by MountainView::StyleguideController#index as HTML
781
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
782
- Completed 200 OK in 6ms (Views: 5.4ms)
732
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
733
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
734
+ Completed 200 OK in 2ms (Views: 2.3ms)
735
+ ------------------------------------------------------
736
+ MountainViewTest: test_stylesheets_are_properly_served
737
+ ------------------------------------------------------
738
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
739
+ -----------------------------------------------------------------------------------
740
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
741
+ -----------------------------------------------------------------------------------
742
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
743
+ Processing by MountainView::StyleguideController#show as HTML
744
+ Parameters: {"id"=>"something"}
745
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
746
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.6ms)
747
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.7ms)
748
+ Completed 200 OK in 10ms (Views: 6.7ms)
749
+ -----------------------------------------------------------------------------
750
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
751
+ -----------------------------------------------------------------------------
752
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:10:52 -0300
753
+ Processing by MountainView::StyleguideController#show as HTML
754
+ Parameters: {"id"=>"header"}
755
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
756
+ Rendered app/components/header/_header.html.erb (2.4ms)
757
+ Rendered app/components/header/_header.html.erb (0.1ms)
758
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (9.7ms)
759
+ Completed 200 OK in 12ms (Views: 11.8ms)
783
760
  -----------------------------------------------
784
761
  MountainViewTest: test_shows_specific_component
785
762
  -----------------------------------------------
786
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
763
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:10:53 -0300
787
764
  Processing by MountainView::StyleguideController#show as HTML
788
765
  Parameters: {"id"=>"header"}
789
- Rendered app/components/header/_header.html.erb (2.8ms)
790
- Rendered app/components/header/_header.html.erb (0.3ms)
791
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (23.9ms)
792
- Completed 200 OK in 34ms (Views: 34.0ms)
766
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
767
+ Rendered app/components/header/_header.html.erb (0.2ms)
768
+ Rendered app/components/header/_header.html.erb (0.1ms)
769
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.6ms)
770
+ Completed 200 OK in 8ms (Views: 7.7ms)
771
+ -------------------------------------------------------------------------------
772
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
773
+ -------------------------------------------------------------------------------
774
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-15 17:10:53 -0300
775
+ Processing by MountainView::StyleguideController#show as HTML
776
+ Parameters: {"id"=>"breadcrumbs"}
777
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
778
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
779
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.7ms)
780
+ Completed 200 OK in 3ms (Views: 2.7ms)
781
+ ---------------------------------------
782
+ MountainViewTest: test_engine_is_loaded
783
+ ---------------------------------------
784
+ -------------------------------------------------------------
785
+ MountainViewTest: test_global_stylesheets_are_properly_served
786
+ -------------------------------------------------------------
787
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:10:53 -0300
788
+ ------------------------------------------------------
789
+ MountainViewTest: test_javascripts_are_properly_served
790
+ ------------------------------------------------------
791
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-15 17:10:53 -0300
792
+ -------------------------------------------------------------------------
793
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
794
+ -------------------------------------------------------------------------
795
+ -----------------------------------------------------------
796
+ RendersComponentInView: test_Renders_component_successfully
797
+ -----------------------------------------------------------
798
+ Started GET "/" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
799
+ Processing by HomeController#index as HTML
800
+ Rendering home/index.html.erb within layouts/application
801
+ Rendered app/components/header/_header.html.erb (0.4ms)
802
+ Rendered home/index.html.erb within layouts/application (6.9ms)
803
+ MountainView: stylesheet not found for component 'paragraph'
804
+ MountainView: javascript not found for component 'paragraph'
805
+ Completed 200 OK in 234ms (Views: 232.2ms)
806
+ ----------------------------------------------------------------------------
807
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
808
+ ----------------------------------------------------------------------------
809
+ --------------------------------------------------------------------------------------------
810
+ MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
811
+ --------------------------------------------------------------------------------------------
812
+ -------------------------------------------------------------------
813
+ MountainViewConfigurationTest: test_set_custom_included_stylesheets
814
+ -------------------------------------------------------------------
815
+ --------------------------------------------------------------
816
+ MountainViewConfigurationTest: test_set_custom_styleguide_path
817
+ --------------------------------------------------------------
818
+ -------------------------------------------------------------
819
+ MountainViewTest: test_global_stylesheets_are_properly_served
820
+ -------------------------------------------------------------
821
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
822
+ ------------------------------------------------------
823
+ MountainViewTest: test_javascripts_are_properly_served
824
+ ------------------------------------------------------
825
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
793
826
  -----------------------------------------------------------------------------
794
827
  MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
795
828
  -----------------------------------------------------------------------------
796
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
829
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
797
830
  Processing by MountainView::StyleguideController#show as HTML
798
831
  Parameters: {"id"=>"header"}
799
- Rendered app/components/header/_header.html.erb (0.4ms)
800
- Rendered app/components/header/_header.html.erb (0.9ms)
801
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.0ms)
802
- Completed 200 OK in 23ms (Views: 22.6ms)
832
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
833
+ Rendered app/components/header/_header.html.erb (1.4ms)
834
+ Rendered app/components/header/_header.html.erb (0.2ms)
835
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (10.0ms)
836
+ Completed 200 OK in 21ms (Views: 18.0ms)
837
+ -------------------------------------------------------------------------------
838
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
839
+ -------------------------------------------------------------------------------
840
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
841
+ Processing by MountainView::StyleguideController#show as HTML
842
+ Parameters: {"id"=>"breadcrumbs"}
843
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
844
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.6ms)
845
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.7ms)
846
+ Completed 200 OK in 6ms (Views: 5.6ms)
803
847
  ------------------------------------------------------
804
- MountainViewTest: test_javascripts_are_properly_served
848
+ MountainViewTest: test_stylesheets_are_properly_served
805
849
  ------------------------------------------------------
806
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
807
- ---------------------------------------
808
- MountainViewTest: test_shows_styleguide
809
- ---------------------------------------
810
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
811
- Processing by MountainView::StyleguideController#index as HTML
812
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
813
- Completed 200 OK in 4ms (Views: 3.6ms)
850
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
814
851
  -----------------------------------------------------------------------------------
815
852
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
816
853
  -----------------------------------------------------------------------------------
817
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
854
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
818
855
  Processing by MountainView::StyleguideController#show as HTML
819
856
  Parameters: {"id"=>"something"}
820
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.4ms)
821
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.8ms)
822
- Completed 200 OK in 5ms (Views: 5.2ms)
857
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
858
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
859
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.6ms)
860
+ Completed 200 OK in 3ms (Views: 3.1ms)
861
+ -----------------------------------------------
862
+ MountainViewTest: test_shows_specific_component
863
+ -----------------------------------------------
864
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
865
+ Processing by MountainView::StyleguideController#show as HTML
866
+ Parameters: {"id"=>"header"}
867
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
868
+ Rendered app/components/header/_header.html.erb (0.2ms)
869
+ Rendered app/components/header/_header.html.erb (0.1ms)
870
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.5ms)
871
+ Completed 200 OK in 8ms (Views: 7.5ms)
872
+ ---------------------------------------
873
+ MountainViewTest: test_shows_styleguide
874
+ ---------------------------------------
875
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
876
+ Processing by MountainView::StyleguideController#index as HTML
877
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
878
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.7ms)
879
+ Completed 200 OK in 5ms (Views: 2.7ms)
823
880
  ---------------------------------------
824
881
  MountainViewTest: test_engine_is_loaded
825
882
  ---------------------------------------
826
- -------------------------------------------------------------------------------
827
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
828
- -------------------------------------------------------------------------------
829
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
830
- Processing by MountainView::StyleguideController#show as HTML
831
- Parameters: {"id"=>"breadcrumbs"}
832
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.1ms)
833
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.3ms)
834
- Completed 200 OK in 8ms (Views: 7.8ms)
835
- ------------------------------------------------------
836
- MountainViewTest: test_stylesheets_are_properly_served
837
- ------------------------------------------------------
838
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
839
- -------------------------------------------------------------
840
- MountainViewTest: test_global_stylesheets_are_properly_served
841
- -------------------------------------------------------------
842
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-08 18:14:21 +0200
843
- -------------------------------------------------------------------------
844
- ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
845
- -------------------------------------------------------------------------
846
883
  ------------------------------------------------------------------
847
884
  ComponentGeneratorTest: test_Assert_all_files_are_properly_created
848
885
  ------------------------------------------------------------------
849
886
  --------------------------------------------------------
850
887
  ComponentGeneratorTest: test_Generates_different_engines
851
888
  --------------------------------------------------------
852
- ---------------------------------------------------------------------------------
853
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
854
- ---------------------------------------------------------------------------------
855
- ---------------------------------------------------------------------------------
856
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
857
- ---------------------------------------------------------------------------------
858
- ---------------------------------------------------------------------------------
859
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
860
- ---------------------------------------------------------------------------------
861
- ---------------------------------------------------------------------------------
862
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
863
- ---------------------------------------------------------------------------------
864
- ---------------------------------------------------------------------------------
865
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
866
- ---------------------------------------------------------------------------------
867
- ---------------------------------------------------------------------------------
868
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
869
- ---------------------------------------------------------------------------------
870
- ---------------------------------------------------------------------------------
871
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
872
- ---------------------------------------------------------------------------------
873
- ---------------------------------------------------------------------------------
874
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
875
- ---------------------------------------------------------------------------------
876
- ------------------------------------------------------------------------------------------
877
- MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
878
- ------------------------------------------------------------------------------------------
879
- Rendered app/components/yielder/_yielder.html.erb (1.3ms)
880
- --------------------------------------------------------------------
881
- MountainView::ComponentHelperTest: test_renders_the_proper_component
882
- --------------------------------------------------------------------
883
- Rendered app/components/header/_header.html.erb (3.6ms)
884
889
  -------------------------------------------------------------------------------------
885
890
  MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
886
891
  -------------------------------------------------------------------------------------
887
- Rendered app/components/yielder/_yielder.html.erb (0.1ms)
888
- -------------------------------------------------------------------
889
- MountainView::ComponentHelperTest: test_renders_when_passed_a_block
890
- -------------------------------------------------------------------
891
- Rendered app/components/yielder/_yielder.html.erb (0.0ms)
892
+ Rendered app/components/yielder/_yielder.html.erb (0.3ms)
892
893
  -------------------------------------------------------------------------------
893
894
  MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
894
895
  -------------------------------------------------------------------------------
895
- Rendered app/components/header/_header.html.erb (0.2ms)
896
+ Rendered app/components/header/_header.html.erb (0.5ms)
896
897
  Rendered app/components/yielder/_yielder.html.erb (0.0ms)
897
- ------------------------------------------------------------------
898
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
899
- ------------------------------------------------------------------
900
- --------------------------------------------------------
901
- ComponentGeneratorTest: test_Generates_different_engines
902
- --------------------------------------------------------
898
+ --------------------------------------------------------------------
899
+ MountainView::ComponentHelperTest: test_renders_the_proper_component
900
+ --------------------------------------------------------------------
901
+ Rendered app/components/header/_header.html.erb (0.1ms)
902
+ ------------------------------------------------------------------------------------------
903
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
904
+ ------------------------------------------------------------------------------------------
905
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
906
+ -----------------------------------------------------------------------------
907
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
908
+ -----------------------------------------------------------------------------
909
+ Rendered app/components/header/_header.html.erb (0.1ms)
910
+ -------------------------------------------------------------------
911
+ MountainView::ComponentHelperTest: test_renders_when_passed_a_block
912
+ -------------------------------------------------------------------
913
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
914
+ -------------------------------------
915
+ MountainViewStubTest: test_meta_title
916
+ -------------------------------------
917
+ ---------------------------------------
918
+ MountainViewStubTest: test_meta_classes
919
+ ---------------------------------------
920
+ -------------------------------------------
921
+ MountainViewStubTest: test_meta_description
922
+ -------------------------------------------
923
+ -------------------------------------
924
+ MountainViewStubTest: test_properties
925
+ -------------------------------------
926
+ ---------------------------------------------------------------------------------
927
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
928
+ ---------------------------------------------------------------------------------
903
929
  -------------------------------------------------------------------------
904
- ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
930
+ MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
905
931
  -------------------------------------------------------------------------
906
- --------------------------------------
907
- MountainViewComponentTest: test_stubs?
908
- --------------------------------------
932
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
933
+ Processing by MountainView::StyleguideController#index as HTML
934
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
935
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
936
+ Completed 200 OK in 2ms (Views: 2.2ms)
909
937
  -----------------------------------------------------
910
- MountainViewComponentTest: test_stubs_correct_format?
938
+ MountedEngineTest: test_Has_been_mounted_successfully
911
939
  -----------------------------------------------------
912
- -------------------------------------------------
913
- MountainViewComponentTest: test_stubs_extra_info?
914
- -------------------------------------------------
940
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
941
+ Processing by MountainView::StyleguideController#index as HTML
942
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
943
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
944
+ Completed 200 OK in 2ms (Views: 2.4ms)
915
945
  ------------------------------------------------
916
- MountainViewComponentTest: test_component_stubs?
946
+ MountedEngineTest: test_Has_the_styleguide_route
917
947
  ------------------------------------------------
948
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-15 17:11:18 -0300
949
+ Processing by MountainView::StyleguideController#index as HTML
950
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
951
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
952
+ Completed 200 OK in 2ms (Views: 2.0ms)
918
953
  -----------------------------------------------
919
- MountainViewComponentTest: test_component_stubs
954
+ MountainViewComponentTest: test_humanized_title
920
955
  -----------------------------------------------
921
- ------------------------------------------
922
- MountainViewComponentTest: test_stubs_file
923
- ------------------------------------------
924
956
  ------------------------------------------------
925
957
  MountainViewComponentTest: test_stubs_extra_info
926
958
  ------------------------------------------------
927
959
  -----------------------------------------------
928
- MountainViewComponentTest: test_humanized_title
960
+ MountainViewComponentTest: test_component_stubs
929
961
  -----------------------------------------------
930
- ------------------------------------------------
931
- MountainViewComponentTest: test_styleguide_stubs
932
- ------------------------------------------------
933
962
  ------------------------------------
934
963
  MountainViewComponentTest: test_name
935
964
  ------------------------------------
965
+ -----------------------------------------------------
966
+ MountainViewComponentTest: test_stubs_correct_format?
967
+ -----------------------------------------------------
968
+ --------------------------------------
969
+ MountainViewComponentTest: test_stubs?
970
+ --------------------------------------
971
+ ------------------------------------------------
972
+ MountainViewComponentTest: test_component_stubs?
973
+ ------------------------------------------------
974
+ -------------------------------------------------
975
+ MountainViewComponentTest: test_stubs_extra_info?
976
+ -------------------------------------------------
977
+ ------------------------------------------
978
+ MountainViewComponentTest: test_stubs_file
979
+ ------------------------------------------
980
+ ------------------------------------------------
981
+ MountainViewComponentTest: test_styleguide_stubs
982
+ ------------------------------------------------
983
+ ------------------------------------------------------------------
984
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
985
+ ------------------------------------------------------------------
986
+ ----------------------------------------------------------------
987
+ MountainView::PresenterTest: test_exposes_properties_as_provided
988
+ ----------------------------------------------------------------
989
+ -------------------------------------------------------------------------------
990
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
991
+ -------------------------------------------------------------------------------
992
+ -----------------------------------------------------------------------------------------
993
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
994
+ -----------------------------------------------------------------------------------------
995
+ -----------------------------------------------------------------------
996
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
997
+ -----------------------------------------------------------------------
936
998
  ------------------------------------------------
937
999
  MountedEngineTest: test_Has_the_styleguide_route
938
1000
  ------------------------------------------------
939
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2017-08-17 11:45:48 +0200
1001
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
940
1002
  Processing by MountainView::StyleguideController#index as HTML
941
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
942
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
1003
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1004
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (2.7ms)
943
1005
  MountainView: stylesheet not found for component 'paragraph'
944
1006
  MountainView: javascript not found for component 'paragraph'
945
- Completed 200 OK in 304ms (Views: 301.9ms)
946
- -----------------------------------------------------
947
- MountedEngineTest: test_Has_been_mounted_successfully
948
- -----------------------------------------------------
949
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
950
- Processing by MountainView::StyleguideController#index as HTML
951
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
952
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.8ms)
953
- Completed 200 OK in 7ms (Views: 5.4ms)
1007
+ Completed 200 OK in 226ms (Views: 224.3ms)
954
1008
  -------------------------------------------------------------------------
955
1009
  MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
956
1010
  -------------------------------------------------------------------------
957
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1011
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
1012
+ Processing by MountainView::StyleguideController#index as HTML
1013
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1014
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
1015
+ Completed 200 OK in 3ms (Views: 2.7ms)
1016
+ -----------------------------------------------------
1017
+ MountedEngineTest: test_Has_been_mounted_successfully
1018
+ -----------------------------------------------------
1019
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
958
1020
  Processing by MountainView::StyleguideController#index as HTML
959
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
960
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
961
- Completed 200 OK in 8ms (Views: 5.5ms)
1021
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1022
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
1023
+ Completed 200 OK in 3ms (Views: 2.5ms)
962
1024
  ------------------------------------------------------
963
1025
  MountainViewTest: test_javascripts_are_properly_served
964
1026
  ------------------------------------------------------
965
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
966
- ---------------------------------------
967
- MountainViewTest: test_engine_is_loaded
968
- ---------------------------------------
1027
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
969
1028
  ------------------------------------------------------
970
1029
  MountainViewTest: test_stylesheets_are_properly_served
971
1030
  ------------------------------------------------------
972
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1031
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
973
1032
  ---------------------------------------
974
1033
  MountainViewTest: test_shows_styleguide
975
1034
  ---------------------------------------
976
- Started GET "/mountain_view" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1035
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
977
1036
  Processing by MountainView::StyleguideController#index as HTML
978
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
979
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
980
- Completed 200 OK in 8ms (Views: 6.3ms)
1037
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1038
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
1039
+ Completed 200 OK in 2ms (Views: 2.2ms)
1040
+ -------------------------------------------------------------
1041
+ MountainViewTest: test_global_stylesheets_are_properly_served
1042
+ -------------------------------------------------------------
1043
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
981
1044
  -----------------------------------------------------------------------------------
982
1045
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
983
1046
  -----------------------------------------------------------------------------------
984
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1047
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
985
1048
  Processing by MountainView::StyleguideController#show as HTML
986
1049
  Parameters: {"id"=>"something"}
987
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
988
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.5ms)
989
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
990
- Completed 200 OK in 15ms (Views: 12.1ms)
991
- -----------------------------------------------------------------------------
992
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
993
- -----------------------------------------------------------------------------
994
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
995
- Processing by MountainView::StyleguideController#show as HTML
996
- Parameters: {"id"=>"header"}
997
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
998
- Rendered app/components/header/_header.html.erb (1.6ms)
999
- Rendered app/components/header/_header.html.erb (0.2ms)
1000
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (15.8ms)
1001
- Completed 200 OK in 23ms (Views: 20.4ms)
1002
- -------------------------------------------------------------
1003
- MountainViewTest: test_global_stylesheets_are_properly_served
1004
- -------------------------------------------------------------
1005
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1050
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1051
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.6ms)
1052
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.3ms)
1053
+ Completed 200 OK in 9ms (Views: 6.4ms)
1006
1054
  -------------------------------------------------------------------------------
1007
1055
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
1008
1056
  -------------------------------------------------------------------------------
1009
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1057
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
1010
1058
  Processing by MountainView::StyleguideController#show as HTML
1011
1059
  Parameters: {"id"=>"breadcrumbs"}
1012
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1013
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.3ms)
1014
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.4ms)
1015
- Completed 200 OK in 11ms (Views: 8.2ms)
1060
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1061
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
1062
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.6ms)
1063
+ Completed 200 OK in 2ms (Views: 2.4ms)
1064
+ -----------------------------------------------------------------------------
1065
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
1066
+ -----------------------------------------------------------------------------
1067
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
1068
+ Processing by MountainView::StyleguideController#show as HTML
1069
+ Parameters: {"id"=>"header"}
1070
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1071
+ Rendered app/components/header/_header.html.erb (1.4ms)
1072
+ Rendered app/components/header/_header.html.erb (0.1ms)
1073
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (11.7ms)
1074
+ Completed 200 OK in 14ms (Views: 13.6ms)
1016
1075
  -----------------------------------------------
1017
1076
  MountainViewTest: test_shows_specific_component
1018
1077
  -----------------------------------------------
1019
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1078
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
1020
1079
  Processing by MountainView::StyleguideController#show as HTML
1021
1080
  Parameters: {"id"=>"header"}
1022
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1023
- Rendered app/components/header/_header.html.erb (0.8ms)
1081
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1024
1082
  Rendered app/components/header/_header.html.erb (0.2ms)
1025
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.7ms)
1026
- Completed 200 OK in 23ms (Views: 19.5ms)
1027
- -----------------------------------------------------------
1028
- RendersComponentInView: test_Renders_component_successfully
1029
- -----------------------------------------------------------
1030
- Started GET "/" for 127.0.0.1 at 2017-08-17 11:45:49 +0200
1031
- Processing by HomeController#index as HTML
1032
- Rendering home/index.html.erb within layouts/application
1033
- Rendered app/components/header/_header.html.erb (0.8ms)
1034
- Rendered home/index.html.erb within layouts/application (20.1ms)
1035
- Completed 200 OK in 32ms (Views: 30.3ms)
1036
- ----------------------------------------------------------------------------
1037
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
1038
- ----------------------------------------------------------------------------
1039
- --------------------------------------------------------------------------------------------
1040
- MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
1041
- --------------------------------------------------------------------------------------------
1042
- -------------------------------------------------------------------
1043
- MountainViewConfigurationTest: test_set_custom_included_stylesheets
1044
- -------------------------------------------------------------------
1045
- --------------------------------------------------------------
1046
- MountainViewConfigurationTest: test_set_custom_styleguide_path
1047
- --------------------------------------------------------------
1048
- -----------------------------------------------------------------------
1049
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
1050
- -----------------------------------------------------------------------
1083
+ Rendered app/components/header/_header.html.erb (0.1ms)
1084
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.5ms)
1085
+ Completed 200 OK in 8ms (Views: 7.5ms)
1086
+ ---------------------------------------
1087
+ MountainViewTest: test_engine_is_loaded
1088
+ ---------------------------------------
1089
+ ------------------------------------------------
1090
+ MountainViewComponentTest: test_component_stubs?
1091
+ ------------------------------------------------
1092
+ ------------------------------------------------
1093
+ MountainViewComponentTest: test_styleguide_stubs
1094
+ ------------------------------------------------
1095
+ -------------------------------------------------
1096
+ MountainViewComponentTest: test_stubs_extra_info?
1097
+ -------------------------------------------------
1098
+ --------------------------------------
1099
+ MountainViewComponentTest: test_stubs?
1100
+ --------------------------------------
1101
+ ------------------------------------------------
1102
+ MountainViewComponentTest: test_stubs_extra_info
1103
+ ------------------------------------------------
1104
+ -----------------------------------------------------
1105
+ MountainViewComponentTest: test_stubs_correct_format?
1106
+ -----------------------------------------------------
1107
+ ------------------------------------
1108
+ MountainViewComponentTest: test_name
1109
+ ------------------------------------
1110
+ ------------------------------------------
1111
+ MountainViewComponentTest: test_stubs_file
1112
+ ------------------------------------------
1113
+ -----------------------------------------------
1114
+ MountainViewComponentTest: test_humanized_title
1115
+ -----------------------------------------------
1116
+ -----------------------------------------
1117
+ MountainViewComponentTest: test_raw_stubs
1118
+ -----------------------------------------
1119
+ -----------------------------------------------
1120
+ MountainViewComponentTest: test_component_stubs
1121
+ -----------------------------------------------
1122
+ ------------------------------------------------------------------
1123
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
1124
+ ------------------------------------------------------------------
1125
+ --------------------------------------------------------
1126
+ ComponentGeneratorTest: test_Generates_different_engines
1127
+ --------------------------------------------------------
1051
1128
  -------------------------------------------------------------------------------
1052
1129
  MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
1053
1130
  -------------------------------------------------------------------------------
1054
1131
  -----------------------------------------------------------------------------------------
1055
1132
  MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
1056
1133
  -----------------------------------------------------------------------------------------
1057
- ----------------------------------------------------------------
1058
- MountainView::PresenterTest: test_exposes_properties_as_provided
1059
- ----------------------------------------------------------------
1134
+ -----------------------------------------------------------------------
1135
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
1136
+ -----------------------------------------------------------------------
1060
1137
  ------------------------------------------------------------------
1061
1138
  MountainView::PresenterTest: test_returns_the_correct_partial_path
1062
1139
  ------------------------------------------------------------------
1063
- ---------------------------------------------------------------------------------
1064
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
1065
- ---------------------------------------------------------------------------------
1066
- ------------------------------------------------------------------------------------------
1067
- MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
1068
- ------------------------------------------------------------------------------------------
1069
- Rendered app/components/yielder/_yielder.html.erb (2.7ms)
1070
- --------------------------------------------------------------------
1071
- MountainView::ComponentHelperTest: test_renders_the_proper_component
1072
- --------------------------------------------------------------------
1073
- Rendered app/components/header/_header.html.erb (5.1ms)
1140
+ ----------------------------------------------------------------
1141
+ MountainView::PresenterTest: test_exposes_properties_as_provided
1142
+ ----------------------------------------------------------------
1143
+ -----------------------------------------------------------
1144
+ RendersComponentInView: test_Renders_component_successfully
1145
+ -----------------------------------------------------------
1146
+ Started GET "/" for 127.0.0.1 at 2018-12-15 17:11:34 -0300
1147
+ Processing by HomeController#index as HTML
1148
+ Rendering home/index.html.erb within layouts/application
1149
+ Rendered app/components/header/_header.html.erb (0.3ms)
1150
+ Rendered home/index.html.erb within layouts/application (3.9ms)
1151
+ Completed 200 OK in 13ms (Views: 11.4ms)
1152
+ -------------------------------------------
1153
+ MountainViewStubTest: test_meta_description
1154
+ -------------------------------------------
1155
+ ---------------------------------------
1156
+ MountainViewStubTest: test_meta_classes
1157
+ ---------------------------------------
1158
+ -------------------------------------
1159
+ MountainViewStubTest: test_properties
1160
+ -------------------------------------
1161
+ -------------------------------------
1162
+ MountainViewStubTest: test_meta_title
1163
+ -------------------------------------
1074
1164
  -------------------------------------------------------------------------------------
1075
1165
  MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
1076
1166
  -------------------------------------------------------------------------------------
1077
- Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1167
+ Rendered app/components/yielder/_yielder.html.erb (0.4ms)
1078
1168
  -------------------------------------------------------------------------------
1079
1169
  MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
1080
1170
  -------------------------------------------------------------------------------
1081
- Rendered app/components/header/_header.html.erb (0.2ms)
1171
+ Rendered app/components/header/_header.html.erb (0.5ms)
1082
1172
  Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1083
1173
  -----------------------------------------------------------------------------
1084
1174
  MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
1085
1175
  -----------------------------------------------------------------------------
1086
- Rendered app/components/header/_header.html.erb (0.2ms)
1176
+ Rendered app/components/header/_header.html.erb (0.1ms)
1177
+ ------------------------------------------------------------------------------------------
1178
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
1179
+ ------------------------------------------------------------------------------------------
1180
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1181
+ --------------------------------------------------------------------
1182
+ MountainView::ComponentHelperTest: test_renders_the_proper_component
1183
+ --------------------------------------------------------------------
1184
+ Rendered app/components/header/_header.html.erb (0.1ms)
1087
1185
  -------------------------------------------------------------------
1088
1186
  MountainView::ComponentHelperTest: test_renders_when_passed_a_block
1089
1187
  -------------------------------------------------------------------
1090
1188
  Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1189
+ -------------------------------------------------------------------------
1190
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
1191
+ -------------------------------------------------------------------------
1091
1192
  -------------------------------------------------------------------
1092
1193
  MountainViewConfigurationTest: test_set_custom_included_stylesheets
1093
1194
  -------------------------------------------------------------------
1094
- ----------------------------------------------------------------------------
1095
- MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
1096
- ----------------------------------------------------------------------------
1097
1195
  --------------------------------------------------------------
1098
1196
  MountainViewConfigurationTest: test_set_custom_styleguide_path
1099
1197
  --------------------------------------------------------------
1100
1198
  --------------------------------------------------------------------------------------------
1101
1199
  MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
1102
1200
  --------------------------------------------------------------------------------------------
1103
- -----------------------------------------------------
1104
- MountedEngineTest: test_Has_been_mounted_successfully
1105
- -----------------------------------------------------
1106
- Started GET "/mountain_view" for 127.0.0.1 at 2018-03-19 09:56:01 +0100
1107
- Processing by MountainView::StyleguideController#index as HTML
1108
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1109
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.0ms)
1110
- MountainView: stylesheet not found for component 'paragraph'
1111
- MountainView: javascript not found for component 'paragraph'
1112
- Completed 200 OK in 313ms (Views: 309.9ms)
1113
- -------------------------------------------------------------------------
1114
- MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
1115
- -------------------------------------------------------------------------
1116
- Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1117
- Processing by MountainView::StyleguideController#index as HTML
1118
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1119
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.6ms)
1120
- Completed 200 OK in 10ms (Views: 7.1ms)
1121
- ------------------------------------------------
1122
- MountedEngineTest: test_Has_the_styleguide_route
1123
- ------------------------------------------------
1124
- Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1125
- Processing by MountainView::StyleguideController#index as HTML
1126
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1127
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.7ms)
1128
- Completed 200 OK in 9ms (Views: 6.3ms)
1129
- ------------------------------------------------------------------
1130
- ComponentGeneratorTest: test_Assert_all_files_are_properly_created
1131
- ------------------------------------------------------------------
1132
- --------------------------------------------------------
1133
- ComponentGeneratorTest: test_Generates_different_engines
1134
- --------------------------------------------------------
1135
- -------------------------------------------------------------------------
1136
- ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
1137
- -------------------------------------------------------------------------
1138
- -----------------------------------------------------------
1139
- RendersComponentInView: test_Renders_component_successfully
1140
- -----------------------------------------------------------
1141
- Started GET "/" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1142
- Processing by HomeController#index as HTML
1143
- Rendering home/index.html.erb within layouts/application
1144
- Rendered app/components/header/_header.html.erb (0.6ms)
1145
- Rendered home/index.html.erb within layouts/application (9.2ms)
1146
- Completed 200 OK in 20ms (Views: 17.0ms)
1201
+ ----------------------------------------------------------------------------
1202
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
1203
+ ----------------------------------------------------------------------------
1204
+ ---------------------------------------------------------------------------------
1205
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
1206
+ ---------------------------------------------------------------------------------
1147
1207
  -----------------------------------------------
1148
1208
  MountainViewTest: test_shows_specific_component
1149
1209
  -----------------------------------------------
1150
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1210
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1151
1211
  Processing by MountainView::StyleguideController#show as HTML
1152
1212
  Parameters: {"id"=>"header"}
1153
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1154
- Rendered app/components/header/_header.html.erb (2.4ms)
1155
- Rendered app/components/header/_header.html.erb (0.2ms)
1156
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (18.2ms)
1157
- Completed 200 OK in 28ms (Views: 23.6ms)
1158
- -------------------------------------------------------------------------------
1159
- MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
1160
- -------------------------------------------------------------------------------
1161
- Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1162
- Processing by MountainView::StyleguideController#show as HTML
1163
- Parameters: {"id"=>"breadcrumbs"}
1164
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1165
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.5ms)
1166
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
1167
- Completed 200 OK in 14ms (Views: 11.2ms)
1213
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1214
+ Rendered app/components/header/_header.html.erb (1.5ms)
1215
+ Rendered app/components/header/_header.html.erb (0.1ms)
1216
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.9ms)
1217
+ MountainView: stylesheet not found for component 'paragraph'
1218
+ MountainView: javascript not found for component 'paragraph'
1219
+ Completed 200 OK in 253ms (Views: 249.4ms)
1220
+ ------------------------------------------------------
1221
+ MountainViewTest: test_javascripts_are_properly_served
1222
+ ------------------------------------------------------
1223
+ Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1168
1224
  ---------------------------------------
1169
1225
  MountainViewTest: test_engine_is_loaded
1170
1226
  ---------------------------------------
1171
- ---------------------------------------
1172
- MountainViewTest: test_shows_styleguide
1173
- ---------------------------------------
1174
- Started GET "/mountain_view" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1175
- Processing by MountainView::StyleguideController#index as HTML
1176
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1177
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.8ms)
1178
- Completed 200 OK in 11ms (Views: 7.7ms)
1179
1227
  ------------------------------------------------------
1180
1228
  MountainViewTest: test_stylesheets_are_properly_served
1181
1229
  ------------------------------------------------------
1182
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1183
- -----------------------------------------------------------------------------
1184
- MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
1185
- -----------------------------------------------------------------------------
1186
- Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1187
- Processing by MountainView::StyleguideController#show as HTML
1188
- Parameters: {"id"=>"header"}
1189
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1190
- Rendered app/components/header/_header.html.erb (0.9ms)
1191
- Rendered app/components/header/_header.html.erb (0.2ms)
1192
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (14.6ms)
1193
- Completed 200 OK in 26ms (Views: 23.0ms)
1194
- ------------------------------------------------------
1195
- MountainViewTest: test_javascripts_are_properly_served
1196
- ------------------------------------------------------
1197
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1230
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1198
1231
  -------------------------------------------------------------
1199
1232
  MountainViewTest: test_global_stylesheets_are_properly_served
1200
1233
  -------------------------------------------------------------
1201
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1234
+ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1202
1235
  -----------------------------------------------------------------------------------
1203
1236
  MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_not_found
1204
1237
  -----------------------------------------------------------------------------------
1205
- Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-03-19 09:56:02 +0100
1238
+ Started GET "/mountain_view/styleguide/something" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1206
1239
  Processing by MountainView::StyleguideController#show as HTML
1207
1240
  Parameters: {"id"=>"something"}
1208
- Rendering /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1209
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.3ms)
1210
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
1211
- Completed 200 OK in 14ms (Views: 10.2ms)
1212
- ---------------------------------------------------------------------------------
1213
- MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
1214
- ---------------------------------------------------------------------------------
1215
- -------------------------------------------------
1216
- MountainViewComponentTest: test_stubs_extra_info?
1217
- -------------------------------------------------
1241
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1242
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.5ms)
1243
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.0ms)
1244
+ Completed 200 OK in 5ms (Views: 4.6ms)
1245
+ -------------------------------------------------------------------------------
1246
+ MountainViewTest: test_shows_a_hint_message_if_the_component_stub_file_is_empty
1247
+ -------------------------------------------------------------------------------
1248
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1249
+ Processing by MountainView::StyleguideController#show as HTML
1250
+ Parameters: {"id"=>"breadcrumbs"}
1251
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1252
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/_example.html.erb (0.2ms)
1253
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1254
+ Completed 200 OK in 2ms (Views: 2.1ms)
1255
+ ---------------------------------------
1256
+ MountainViewTest: test_shows_styleguide
1257
+ ---------------------------------------
1258
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1259
+ Processing by MountainView::StyleguideController#index as HTML
1260
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1261
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
1262
+ Completed 200 OK in 4ms (Views: 1.9ms)
1263
+ -----------------------------------------------------------------------------
1264
+ MountainViewTest: test_shows_specific_component_that_uses_a_main_app_url_okay
1265
+ -----------------------------------------------------------------------------
1266
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1267
+ Processing by MountainView::StyleguideController#show as HTML
1268
+ Parameters: {"id"=>"header"}
1269
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view
1270
+ Rendered app/components/header/_header.html.erb (0.1ms)
1271
+ Rendered app/components/header/_header.html.erb (0.1ms)
1272
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.6ms)
1273
+ Completed 200 OK in 5ms (Views: 4.9ms)
1274
+ --------------------------------------------------------
1275
+ ComponentGeneratorTest: test_Generates_different_engines
1276
+ --------------------------------------------------------
1277
+ ------------------------------------------------------------------
1278
+ ComponentGeneratorTest: test_Assert_all_files_are_properly_created
1279
+ ------------------------------------------------------------------
1280
+ -------------------------------------------------------------------------------
1281
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
1282
+ -------------------------------------------------------------------------------
1283
+ ----------------------------------------------------------------
1284
+ MountainView::PresenterTest: test_exposes_properties_as_provided
1285
+ ----------------------------------------------------------------
1286
+ -----------------------------------------------------------------------------------------
1287
+ MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
1288
+ -----------------------------------------------------------------------------------------
1289
+ -----------------------------------------------------------------------
1290
+ MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
1291
+ -----------------------------------------------------------------------
1292
+ ------------------------------------------------------------------
1293
+ MountainView::PresenterTest: test_returns_the_correct_partial_path
1294
+ ------------------------------------------------------------------
1295
+ ----------------------------------------------------------------------------
1296
+ MountainViewConfigurationTest: test_default_value_for_styleguide_path_is_nil
1297
+ ----------------------------------------------------------------------------
1298
+ -------------------------------------------------------------------
1299
+ MountainViewConfigurationTest: test_set_custom_included_stylesheets
1300
+ -------------------------------------------------------------------
1301
+ --------------------------------------------------------------------------------------------
1302
+ MountainViewConfigurationTest: test_default_value_for_included_stylesheets_is_an_empty_array
1303
+ --------------------------------------------------------------------------------------------
1304
+ --------------------------------------------------------------
1305
+ MountainViewConfigurationTest: test_set_custom_styleguide_path
1306
+ --------------------------------------------------------------
1307
+ ------------------------------------------------
1308
+ MountedEngineTest: test_Has_the_styleguide_route
1309
+ ------------------------------------------------
1310
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1311
+ Processing by MountainView::StyleguideController#index as HTML
1312
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1313
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
1314
+ Completed 200 OK in 2ms (Views: 2.2ms)
1315
+ -------------------------------------------------------------------------
1316
+ MountedEngineTest: test_Custom_path_can_be_applied_to_styleguide_resource
1317
+ -------------------------------------------------------------------------
1318
+ Started GET "/mountain_view/style-guide" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1319
+ Processing by MountainView::StyleguideController#index as HTML
1320
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1321
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
1322
+ Completed 200 OK in 2ms (Views: 1.9ms)
1218
1323
  -----------------------------------------------------
1219
- MountainViewComponentTest: test_stubs_correct_format?
1324
+ MountedEngineTest: test_Has_been_mounted_successfully
1220
1325
  -----------------------------------------------------
1326
+ Started GET "/mountain_view" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1327
+ Processing by MountainView::StyleguideController#index as HTML
1328
+ Rendering /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view
1329
+ Rendered /Users/kito/dev/devnacho/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.3ms)
1330
+ Completed 200 OK in 2ms (Views: 2.0ms)
1221
1331
  ------------------------------------------
1222
1332
  MountainViewComponentTest: test_stubs_file
1223
1333
  ------------------------------------------
1224
- -----------------------------------------------
1225
- MountainViewComponentTest: test_component_stubs
1226
- -----------------------------------------------
1227
- --------------------------------------
1228
- MountainViewComponentTest: test_stubs?
1229
- --------------------------------------
1230
- ------------------------------------
1231
- MountainViewComponentTest: test_name
1232
- ------------------------------------
1233
- ------------------------------------------------
1234
- MountainViewComponentTest: test_component_stubs?
1235
- ------------------------------------------------
1236
1334
  ------------------------------------------------
1237
1335
  MountainViewComponentTest: test_styleguide_stubs
1238
1336
  ------------------------------------------------
1239
1337
  ------------------------------------------------
1240
- MountainViewComponentTest: test_stubs_extra_info
1338
+ MountainViewComponentTest: test_component_stubs?
1241
1339
  ------------------------------------------------
1242
1340
  -----------------------------------------------
1243
1341
  MountainViewComponentTest: test_humanized_title
1244
1342
  -----------------------------------------------
1245
- ------------------------------------------------------------------
1246
- MountainView::PresenterTest: test_returns_the_correct_partial_path
1247
- ------------------------------------------------------------------
1343
+ -----------------------------------------
1344
+ MountainViewComponentTest: test_raw_stubs
1345
+ -----------------------------------------
1346
+ -----------------------------------------------------
1347
+ MountainViewComponentTest: test_stubs_correct_format?
1348
+ -----------------------------------------------------
1349
+ -----------------------------------------------
1350
+ MountainViewComponentTest: test_component_stubs
1351
+ -----------------------------------------------
1352
+ ------------------------------------------------
1353
+ MountainViewComponentTest: test_stubs_extra_info
1354
+ ------------------------------------------------
1355
+ -------------------------------------------------
1356
+ MountainViewComponentTest: test_stubs_extra_info?
1357
+ -------------------------------------------------
1358
+ ------------------------------------
1359
+ MountainViewComponentTest: test_name
1360
+ ------------------------------------
1361
+ --------------------------------------
1362
+ MountainViewComponentTest: test_stubs?
1363
+ --------------------------------------
1364
+ ------------------------------------------------------------------------------------------
1365
+ MountainView::ComponentHelperTest: test_Does_not_override_passed_yield_property_with_block
1366
+ ------------------------------------------------------------------------------------------
1367
+ Rendered app/components/yielder/_yielder.html.erb (0.3ms)
1368
+ --------------------------------------------------------------------
1369
+ MountainView::ComponentHelperTest: test_renders_the_proper_component
1370
+ --------------------------------------------------------------------
1371
+ Rendered app/components/header/_header.html.erb (0.4ms)
1248
1372
  -------------------------------------------------------------------------------
1249
- MountainView::PresenterTest: test_inherited_presenter_returns_the_correct_title
1373
+ MountainView::ComponentHelperTest: test_renders_a_component_within_a_compontent
1250
1374
  -------------------------------------------------------------------------------
1251
- -----------------------------------------------------------------------------------------
1252
- MountainView::PresenterTest: test_inherited_presenter_returns_the_default_value_for_#data
1253
- -----------------------------------------------------------------------------------------
1254
- ----------------------------------------------------------------
1255
- MountainView::PresenterTest: test_exposes_properties_as_provided
1256
- ----------------------------------------------------------------
1257
- -----------------------------------------------------------------------
1258
- MountainView::PresenterTest: test_inherited_presenter_responds_to_#data
1259
- -----------------------------------------------------------------------
1375
+ Rendered app/components/header/_header.html.erb (0.2ms)
1376
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1377
+ -----------------------------------------------------------------------------
1378
+ MountainView::ComponentHelperTest: test_renders_the_component_with_`rc`_alias
1379
+ -----------------------------------------------------------------------------
1380
+ Rendered app/components/header/_header.html.erb (0.1ms)
1381
+ -------------------------------------------------------------------
1382
+ MountainView::ComponentHelperTest: test_renders_when_passed_a_block
1383
+ -------------------------------------------------------------------
1384
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1385
+ -------------------------------------------------------------------------------------
1386
+ MountainView::ComponentHelperTest: test_renders_when_has_a_yield,_but_no_block_passed
1387
+ -------------------------------------------------------------------------------------
1388
+ Rendered app/components/yielder/_yielder.html.erb (0.0ms)
1389
+ -------------------------------------------
1390
+ MountainViewStubTest: test_meta_description
1391
+ -------------------------------------------
1392
+ -------------------------------------
1393
+ MountainViewStubTest: test_meta_title
1394
+ -------------------------------------
1395
+ ---------------------------------------
1396
+ MountainViewStubTest: test_meta_classes
1397
+ ---------------------------------------
1398
+ -------------------------------------
1399
+ MountainViewStubTest: test_properties
1400
+ -------------------------------------
1401
+ -------------------------------------------------------------------------
1402
+ ExtraPagesGeneratorTest: test_Assert_all_views_and_controller_are_created
1403
+ -------------------------------------------------------------------------
1404
+ ---------------------------------------------------------------------------------
1405
+ MountainView::StyleguideHelperTest: test_returns_components_sorted_alphabetically
1406
+ ---------------------------------------------------------------------------------
1407
+ -----------------------------------------------------------
1408
+ RendersComponentInView: test_Renders_component_successfully
1409
+ -----------------------------------------------------------
1410
+ Started GET "/" for 127.0.0.1 at 2018-12-15 17:12:06 -0300
1411
+ Processing by HomeController#index as HTML
1412
+ Rendering home/index.html.erb within layouts/application
1413
+ Rendered app/components/header/_header.html.erb (0.2ms)
1414
+ Rendered home/index.html.erb within layouts/application (3.1ms)
1415
+ Completed 200 OK in 11ms (Views: 9.6ms)