trix_editor_helper 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/lib/core_extensions/action_view/helpers/tags/trix_editor.rb +47 -0
  6. data/lib/tasks/trix_editor_tasks.rake +4 -0
  7. data/lib/trix_editor_helper.rb +7 -0
  8. data/lib/trix_editor_helper/version.rb +3 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/models/post.rb +17 -0
  14. data/test/dummy/bin/bundle +3 -0
  15. data/test/dummy/bin/rails +4 -0
  16. data/test/dummy/bin/rake +4 -0
  17. data/test/dummy/bin/setup +29 -0
  18. data/test/dummy/config.ru +4 -0
  19. data/test/dummy/config/application.rb +22 -0
  20. data/test/dummy/config/boot.rb +5 -0
  21. data/test/dummy/config/environment.rb +5 -0
  22. data/test/dummy/config/environments/development.rb +41 -0
  23. data/test/dummy/config/environments/production.rb +79 -0
  24. data/test/dummy/config/environments/test.rb +37 -0
  25. data/test/dummy/config/initializers/assets.rb +11 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  28. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  29. data/test/dummy/config/initializers/inflections.rb +16 -0
  30. data/test/dummy/config/initializers/mime_types.rb +4 -0
  31. data/test/dummy/config/initializers/session_store.rb +3 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +23 -0
  34. data/test/dummy/config/routes.rb +3 -0
  35. data/test/dummy/config/secrets.yml +22 -0
  36. data/test/dummy/log/test.log +1527 -0
  37. data/test/dummy/public/404.html +67 -0
  38. data/test/dummy/public/422.html +67 -0
  39. data/test/dummy/public/500.html +66 -0
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/lib/core_extensions/action_view/helpers/tags/trix_editor_test.rb +54 -0
  42. data/test/test_helper.rb +16 -0
  43. data/vendor/assets/javascripts/trix.js +25 -0
  44. data/vendor/assets/stylesheets/trix.css +209 -0
  45. metadata +164 -0
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :posts
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: cb8373f014564678fd3b6e9dd6e3f2ab03e5d9902d2b1702a3d6f678105e70274301515eb27714ec40f824cddd2461edc4218a0be0e32c4a7ace60e62e4df877
15
+
16
+ test:
17
+ secret_key_base: 3d155206cbf81114c02b7558e735c88946adb9e0909c9dd379935adb7555233478142f87e75a514fa2670a111dacc08ba96296a3b19fd5c13077e2ac772a2a16
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,1527 @@
1
+  (0.2ms) begin transaction
2
+ --------------------------
3
+ TrixEditorTest: test_truth
4
+ --------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ --------------------------------------------------------------
8
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
9
+ --------------------------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+ --------------------------------------------------------------
13
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
14
+ --------------------------------------------------------------
15
+  (0.2ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ --------------------------------------------------------------
18
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
19
+ --------------------------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ --------------------------------------------------------------
23
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
24
+ --------------------------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.2ms) begin transaction
27
+ --------------------------------------------------------------
28
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
29
+ --------------------------------------------------------------
30
+  (0.1ms) rollback transaction
31
+ --------------------------------------------------------------
32
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
33
+ --------------------------------------------------------------
34
+ --------------------------------------------------------------
35
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
36
+ --------------------------------------------------------------
37
+ --------------------------------------------------------------
38
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
39
+ --------------------------------------------------------------
40
+ --------------------------------------------------------------
41
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
42
+ --------------------------------------------------------------
43
+ --------------------------------------------------------------
44
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
45
+ --------------------------------------------------------------
46
+ -------------------------------------------------------------
47
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
48
+ -------------------------------------------------------------
49
+ --------------------------------------------------------------
50
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_html
51
+ --------------------------------------------------------------
52
+ -------------------------------------------------------------
53
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
54
+ -------------------------------------------------------------
55
+ -------------------------------------------------------------
56
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
57
+ -------------------------------------------------------------
58
+ -------------------------------------------------------------
59
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
60
+ -------------------------------------------------------------
61
+ -------------------------------------------------------------
62
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
63
+ -------------------------------------------------------------
64
+ -------------------------------------------------------------
65
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
66
+ -------------------------------------------------------------
67
+ -------------------------------------------------------------
68
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
69
+ -------------------------------------------------------------
70
+ -------------------------------------------------------------
71
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
72
+ -------------------------------------------------------------
73
+ -------------------------------------------------------------
74
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
75
+ -------------------------------------------------------------
76
+ -------------------------------------------------------------
77
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
78
+ -------------------------------------------------------------
79
+ -------------------------------------------------------------
80
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
81
+ -------------------------------------------------------------
82
+ -------------------------------------------------------------
83
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
84
+ -------------------------------------------------------------
85
+ -------------------------------------------------------------
86
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
87
+ -------------------------------------------------------------
88
+ -----------------------------------------------------------------
89
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
90
+ -----------------------------------------------------------------
91
+ -----------------------------------------------------------------
92
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
93
+ -----------------------------------------------------------------
94
+ -------------------------------------------------------------
95
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
96
+ -------------------------------------------------------------
97
+ -------------------------------------------------------------
98
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
99
+ -------------------------------------------------------------
100
+ -------------------------------------------------------------
101
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
102
+ -------------------------------------------------------------
103
+ -------------------------------------------------------------
104
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
105
+ -------------------------------------------------------------
106
+ -----------------------------------------------------------------
107
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
108
+ -----------------------------------------------------------------
109
+ -------------------------------------------------------------
110
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
111
+ -------------------------------------------------------------
112
+ -------------------------------------------------------------
113
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
114
+ -------------------------------------------------------------
115
+ -----------------------------------------------------------------
116
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
117
+ -----------------------------------------------------------------
118
+ -----------------------------------------------------------------
119
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
120
+ -----------------------------------------------------------------
121
+ -------------------------------------------------------------
122
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
123
+ -------------------------------------------------------------
124
+ -------------------------------------------------------------
125
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
126
+ -------------------------------------------------------------
127
+ -------------------------------------------------------------
128
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
129
+ -------------------------------------------------------------
130
+ -------------------------------------------------------------
131
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
132
+ -------------------------------------------------------------
133
+ -----------------------------------------------------------------
134
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
135
+ -----------------------------------------------------------------
136
+ -------------------------------------------------------------
137
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
138
+ -------------------------------------------------------------
139
+ -------------------------------------------------------------
140
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
141
+ -------------------------------------------------------------
142
+ -----------------------------------------------------------------
143
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
144
+ -----------------------------------------------------------------
145
+ -------------------------------------------------------------
146
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
147
+ -------------------------------------------------------------
148
+ -----------------------------------------------------------------
149
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
150
+ -----------------------------------------------------------------
151
+ -------------------------------------------------------------
152
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
153
+ -------------------------------------------------------------
154
+ -----------------------------------------------------------------
155
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
156
+ -----------------------------------------------------------------
157
+ -------------------------------------------------------------
158
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
159
+ -------------------------------------------------------------
160
+ -------------------------------------------------------------
161
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
162
+ -------------------------------------------------------------
163
+ -------------------------------------------------------------
164
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
165
+ -------------------------------------------------------------
166
+ -----------------------------------------------------------------
167
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
168
+ -----------------------------------------------------------------
169
+ -------------------------------------------------------------
170
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
171
+ -------------------------------------------------------------
172
+ -----------------------------------------------------------
173
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
174
+ -----------------------------------------------------------
175
+ -----------------------------------------------------------
176
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
177
+ -----------------------------------------------------------
178
+ -------------------------------------------------------------
179
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
180
+ -------------------------------------------------------------
181
+ -----------------------------------------------------------------
182
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
183
+ -----------------------------------------------------------------
184
+ -------------------------------------------------------------
185
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
186
+ -------------------------------------------------------------
187
+ -----------------------------------------------------------
188
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
189
+ -----------------------------------------------------------
190
+ -----------------------------------------------------------------
191
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
192
+ -----------------------------------------------------------------
193
+ -------------------------------------------------------------
194
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
195
+ -------------------------------------------------------------
196
+ -------------------------------------------------------------
197
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
198
+ -------------------------------------------------------------
199
+ -----------------------------------------------------------
200
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
201
+ -----------------------------------------------------------
202
+ -------------------------------------------------------------
203
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
204
+ -------------------------------------------------------------
205
+ -------------------------------------------------------------
206
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
207
+ -------------------------------------------------------------
208
+ -----------------------------------------------------------------
209
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
210
+ -----------------------------------------------------------------
211
+ -------------------------------------------------------------
212
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
213
+ -------------------------------------------------------------
214
+ -----------------------------------------------------------------
215
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
216
+ -----------------------------------------------------------------
217
+ -------------------------------------------------------------
218
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
219
+ -------------------------------------------------------------
220
+ -----------------------------------------------------------
221
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
222
+ -----------------------------------------------------------
223
+ -----------------------------------------------------------------
224
+ TrixEditorHelperTest: test_can_instantiate_new_trix_editor_helper
225
+ -----------------------------------------------------------------
226
+ -------------------------------------------------------------
227
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
228
+ -------------------------------------------------------------
229
+ -----------------------------------------------------------
230
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
231
+ -----------------------------------------------------------
232
+ -------------------------------------------------------------
233
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
234
+ -------------------------------------------------------------
235
+ -----------------------------------------------------------------
236
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
237
+ -----------------------------------------------------------------
238
+ -----------------------------------------------------------------
239
+ TrixEditorHelperTest: test_can_instantiate_new_trix_editor_helper
240
+ -----------------------------------------------------------------
241
+ -----------------------------------------------------------
242
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
243
+ -----------------------------------------------------------
244
+ -----------------------------------------------------------------
245
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
246
+ -----------------------------------------------------------------
247
+ -------------------------------------------------------------
248
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
249
+ -------------------------------------------------------------
250
+ -------------------------------------------------------------
251
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
252
+ -------------------------------------------------------------
253
+ -------------------------------------------------------------
254
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
255
+ -------------------------------------------------------------
256
+ -------------------------------------------------------------
257
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
258
+ -------------------------------------------------------------
259
+ -----------------------------------------------------------
260
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
261
+ -----------------------------------------------------------
262
+ -----------------------------------------------------------------
263
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
264
+ -----------------------------------------------------------------
265
+ -----------------------------------------------------------
266
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
267
+ -----------------------------------------------------------
268
+ -------------------------------------------------------------
269
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
270
+ -------------------------------------------------------------
271
+ -----------------------------------------------------------
272
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
273
+ -----------------------------------------------------------
274
+ -----------------------------------------------------------
275
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
276
+ -----------------------------------------------------------
277
+ -----------------------------------------------------------------
278
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
279
+ -----------------------------------------------------------------
280
+ -------------------------------------------------------------
281
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
282
+ -------------------------------------------------------------
283
+ -------------------------------------------------------------
284
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
285
+ -------------------------------------------------------------
286
+ -----------------------------------------------------------
287
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
288
+ -----------------------------------------------------------
289
+ -----------------------------------------------------------
290
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
291
+ -----------------------------------------------------------
292
+ -----------------------------------------------------------------
293
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
294
+ -----------------------------------------------------------------
295
+ -------------------------------------------------------------
296
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
297
+ -------------------------------------------------------------
298
+ -----------------------------------------------------------
299
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
300
+ -----------------------------------------------------------
301
+ -------------------------------------------------------------
302
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
303
+ -------------------------------------------------------------
304
+ -------------------------------------------------------------
305
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
306
+ -------------------------------------------------------------
307
+ -----------------------------------------------------------------
308
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
309
+ -----------------------------------------------------------------
310
+ -----------------------------------------------------------
311
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
312
+ -----------------------------------------------------------
313
+ -----------------------------------------------------------
314
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
315
+ -----------------------------------------------------------
316
+ -------------------------------------------------------------
317
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
318
+ -------------------------------------------------------------
319
+ -----------------------------------------------------------------
320
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
321
+ -----------------------------------------------------------------
322
+ -----------------------------------------------------------
323
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
324
+ -----------------------------------------------------------
325
+ -------------------------------------------------------------
326
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
327
+ -------------------------------------------------------------
328
+ -----------------------------------------------------------
329
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
330
+ -----------------------------------------------------------
331
+ -----------------------------------------------------------
332
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
333
+ -----------------------------------------------------------
334
+ -------------------------------------------------------------
335
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
336
+ -------------------------------------------------------------
337
+ -----------------------------------------------------------------
338
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
339
+ -----------------------------------------------------------------
340
+ -------------------------------------------------------------
341
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
342
+ -------------------------------------------------------------
343
+ -----------------------------------------------------------
344
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
345
+ -----------------------------------------------------------
346
+ -----------------------------------------------------------------
347
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
348
+ -----------------------------------------------------------------
349
+ -------------------------------------------------------------
350
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
351
+ -------------------------------------------------------------
352
+ -----------------------------------------------------------
353
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
354
+ -----------------------------------------------------------
355
+ -------------------------------------------------------------
356
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
357
+ -------------------------------------------------------------
358
+ -----------------------------------------------------------
359
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
360
+ -----------------------------------------------------------
361
+ -------------------------------------------------------------
362
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
363
+ -------------------------------------------------------------
364
+ -----------------------------------------------------------------
365
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
366
+ -----------------------------------------------------------------
367
+ -------------------------------------------------------------
368
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
369
+ -------------------------------------------------------------
370
+ -----------------------------------------------------------
371
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
372
+ -----------------------------------------------------------
373
+ -------------------------------------------------------------
374
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
375
+ -------------------------------------------------------------
376
+ -------------------------------------------------------------
377
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
378
+ -------------------------------------------------------------
379
+ -----------------------------------------------------------------
380
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
381
+ -----------------------------------------------------------------
382
+ -----------------------------------------------------------
383
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
384
+ -----------------------------------------------------------
385
+ -----------------------------------------------------------
386
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
387
+ -----------------------------------------------------------
388
+ -------------------------------------------------------------
389
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
390
+ -------------------------------------------------------------
391
+ -----------------------------------------------------------
392
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
393
+ -----------------------------------------------------------
394
+ -----------------------------------------------------------
395
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
396
+ -----------------------------------------------------------
397
+ -----------------------------------------------------------------
398
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
399
+ -----------------------------------------------------------------
400
+ -------------------------------------------------------------
401
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
402
+ -------------------------------------------------------------
403
+ -------------------------------------------------------------
404
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
405
+ -------------------------------------------------------------
406
+ -------------------------------------------------------------
407
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
408
+ -------------------------------------------------------------
409
+ -----------------------------------------------------------
410
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
411
+ -----------------------------------------------------------
412
+ -----------------------------------------------------------------
413
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
414
+ -----------------------------------------------------------------
415
+ -----------------------------------------------------------
416
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
417
+ -----------------------------------------------------------
418
+ -----------------------------------------------------------
419
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
420
+ -----------------------------------------------------------
421
+ -----------------------------------------------------------------
422
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
423
+ -----------------------------------------------------------------
424
+ -------------------------------------------------------------
425
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
426
+ -------------------------------------------------------------
427
+ -----------------------------------------------------------
428
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
429
+ -----------------------------------------------------------
430
+ -------------------------------------------------------------
431
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
432
+ -------------------------------------------------------------
433
+ -------------------------------------------------------------
434
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
435
+ -------------------------------------------------------------
436
+ -----------------------------------------------------------
437
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
438
+ -----------------------------------------------------------
439
+ -------------------------------------------------------------
440
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
441
+ -------------------------------------------------------------
442
+ -----------------------------------------------------------
443
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
444
+ -----------------------------------------------------------
445
+ -----------------------------------------------------------------
446
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
447
+ -----------------------------------------------------------------
448
+ -------------------------------------------------------------
449
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
450
+ -------------------------------------------------------------
451
+ -------------------------------------------------------------
452
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
453
+ -------------------------------------------------------------
454
+ -----------------------------------------------------------------
455
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
456
+ -----------------------------------------------------------------
457
+ -----------------------------------------------------------
458
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
459
+ -----------------------------------------------------------
460
+ -----------------------------------------------------------
461
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
462
+ -----------------------------------------------------------
463
+ -----------------------------------------------------------
464
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
465
+ -----------------------------------------------------------
466
+ -------------------------------------------------------------
467
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
468
+ -------------------------------------------------------------
469
+ -------------------------------------------------------------
470
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
471
+ -------------------------------------------------------------
472
+ -----------------------------------------------------------
473
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
474
+ -----------------------------------------------------------
475
+ -----------------------------------------------------------------
476
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
477
+ -----------------------------------------------------------------
478
+ -----------------------------------------------------------
479
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
480
+ -----------------------------------------------------------
481
+ -----------------------------------------------------------
482
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
483
+ -----------------------------------------------------------
484
+ -------------------------------------------------------------
485
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
486
+ -------------------------------------------------------------
487
+ -------------------------------------------------------------
488
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
489
+ -------------------------------------------------------------
490
+ -----------------------------------------------------------------
491
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
492
+ -----------------------------------------------------------------
493
+ -------------------------------------------------------------
494
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
495
+ -------------------------------------------------------------
496
+ -------------------------------------------------------------
497
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
498
+ -------------------------------------------------------------
499
+ -----------------------------------------------------------
500
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
501
+ -----------------------------------------------------------
502
+ -----------------------------------------------------------
503
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
504
+ -----------------------------------------------------------
505
+ -----------------------------------------------------------------
506
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
507
+ -----------------------------------------------------------------
508
+ -----------------------------------------------------------
509
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
510
+ -----------------------------------------------------------
511
+ -----------------------------------------------------------------
512
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
513
+ -----------------------------------------------------------------
514
+ -----------------------------------------------------------
515
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
516
+ -----------------------------------------------------------
517
+ -------------------------------------------------------------
518
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
519
+ -------------------------------------------------------------
520
+ -------------------------------------------------------------
521
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
522
+ -------------------------------------------------------------
523
+ -----------------------------------------------------------
524
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
525
+ -----------------------------------------------------------
526
+ -------------------------------------------------------------
527
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
528
+ -------------------------------------------------------------
529
+ -----------------------------------------------------------------
530
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
531
+ -----------------------------------------------------------------
532
+ -------------------------------------------------------------
533
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
534
+ -------------------------------------------------------------
535
+ -----------------------------------------------------------
536
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
537
+ -----------------------------------------------------------
538
+ -------------------------------------------------------------
539
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
540
+ -------------------------------------------------------------
541
+ -------------------------------------------------------------
542
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
543
+ -------------------------------------------------------------
544
+ -----------------------------------------------------------------
545
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
546
+ -----------------------------------------------------------------
547
+ -----------------------------------------------------------
548
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
549
+ -----------------------------------------------------------
550
+ -----------------------------------------------------------
551
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
552
+ -----------------------------------------------------------
553
+ -------------------------------------------------------------
554
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
555
+ -------------------------------------------------------------
556
+ -------------------------------------------------------------
557
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
558
+ -------------------------------------------------------------
559
+ -----------------------------------------------------------------
560
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
561
+ -----------------------------------------------------------------
562
+ -----------------------------------------------------------
563
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
564
+ -----------------------------------------------------------
565
+ -----------------------------------------------------------
566
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
567
+ -----------------------------------------------------------
568
+ -------------------------------------------------------------
569
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
570
+ -------------------------------------------------------------
571
+ -----------------------------------------------------------------
572
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
573
+ -----------------------------------------------------------------
574
+ -----------------------------------------------------------
575
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
576
+ -----------------------------------------------------------
577
+ -------------------------------------------------------------
578
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
579
+ -------------------------------------------------------------
580
+ -----------------------------------------------------------
581
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
582
+ -----------------------------------------------------------
583
+ -------------------------------------------------------------
584
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
585
+ -------------------------------------------------------------
586
+ -----------------------------------------------------------------
587
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
588
+ -----------------------------------------------------------------
589
+ -----------------------------------------------------------
590
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
591
+ -----------------------------------------------------------
592
+ -------------------------------------------------------------
593
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
594
+ -------------------------------------------------------------
595
+ -----------------------------------------------------------
596
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
597
+ -----------------------------------------------------------
598
+ -------------------------------------------------------------
599
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
600
+ -------------------------------------------------------------
601
+ -------------------------------------------------------------
602
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
603
+ -------------------------------------------------------------
604
+ -----------------------------------------------------------
605
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
606
+ -----------------------------------------------------------
607
+ -----------------------------------------------------------
608
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
609
+ -----------------------------------------------------------
610
+ -----------------------------------------------------------------
611
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
612
+ -----------------------------------------------------------------
613
+ -----------------------------------------------------------------
614
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
615
+ -----------------------------------------------------------------
616
+ -----------------------------------------------------------
617
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
618
+ -----------------------------------------------------------
619
+ -------------------------------------------------------------
620
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
621
+ -------------------------------------------------------------
622
+ -----------------------------------------------------------
623
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
624
+ -----------------------------------------------------------
625
+ -------------------------------------------------------------
626
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
627
+ -------------------------------------------------------------
628
+ -------------------------------------------------------------
629
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
630
+ -------------------------------------------------------------
631
+ -----------------------------------------------------------
632
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
633
+ -----------------------------------------------------------
634
+ -------------------------------------------------------------
635
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
636
+ -------------------------------------------------------------
637
+ -----------------------------------------------------------------
638
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
639
+ -----------------------------------------------------------------
640
+ -----------------------------------------------------------
641
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
642
+ -----------------------------------------------------------
643
+ -----------------------------------------------------------------
644
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
645
+ -----------------------------------------------------------------
646
+ -----------------------------------------------------------
647
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
648
+ -----------------------------------------------------------
649
+ -----------------------------------------------------------
650
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
651
+ -----------------------------------------------------------
652
+ -------------------------------------------------------------
653
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
654
+ -------------------------------------------------------------
655
+ -------------------------------------------------------------
656
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
657
+ -------------------------------------------------------------
658
+ -------------------------------------------------------------
659
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
660
+ -------------------------------------------------------------
661
+ -----------------------------------------------------------
662
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
663
+ -----------------------------------------------------------
664
+ -----------------------------------------------------------
665
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
666
+ -----------------------------------------------------------
667
+ -----------------------------------------------------------------
668
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
669
+ -----------------------------------------------------------------
670
+ -------------------------------------------------------------
671
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
672
+ -------------------------------------------------------------
673
+ -----------------------------------------------------------
674
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
675
+ -----------------------------------------------------------
676
+ -----------------------------------------------------------------
677
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
678
+ -----------------------------------------------------------------
679
+ -------------------------------------------------------------
680
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
681
+ -------------------------------------------------------------
682
+ -------------------------------------------------------------
683
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
684
+ -------------------------------------------------------------
685
+ -----------------------------------------------------------
686
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
687
+ -----------------------------------------------------------
688
+ -----------------------------------------------------------
689
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
690
+ -----------------------------------------------------------
691
+ -----------------------------------------------------------------
692
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
693
+ -----------------------------------------------------------------
694
+ -----------------------------------------------------------
695
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
696
+ -----------------------------------------------------------
697
+ -------------------------------------------------------------
698
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
699
+ -------------------------------------------------------------
700
+ -------------------------------------------------------------
701
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
702
+ -------------------------------------------------------------
703
+ -------------------------------------------------------------
704
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
705
+ -------------------------------------------------------------
706
+ -----------------------------------------------------------
707
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
708
+ -----------------------------------------------------------
709
+ -------------------------------------------------------------
710
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
711
+ -------------------------------------------------------------
712
+ -----------------------------------------------------------------
713
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
714
+ -----------------------------------------------------------------
715
+ -----------------------------------------------------------
716
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
717
+ -----------------------------------------------------------
718
+ -----------------------------------------------------------
719
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
720
+ -----------------------------------------------------------
721
+ -------------------------------------------------------------
722
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
723
+ -------------------------------------------------------------
724
+ -----------------------------------------------------------------
725
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
726
+ -----------------------------------------------------------------
727
+ -----------------------------------------------------------
728
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
729
+ -----------------------------------------------------------
730
+ -------------------------------------------------------------
731
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
732
+ -------------------------------------------------------------
733
+ -------------------------------------------------------------
734
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
735
+ -------------------------------------------------------------
736
+ -----------------------------------------------------------
737
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
738
+ -----------------------------------------------------------
739
+ -------------------------------------------------------------
740
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
741
+ -------------------------------------------------------------
742
+ -----------------------------------------------------------
743
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
744
+ -----------------------------------------------------------
745
+ -----------------------------------------------------------------
746
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
747
+ -----------------------------------------------------------------
748
+ -------------------------------------------------------------
749
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
750
+ -------------------------------------------------------------
751
+ -----------------------------------------------------------
752
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
753
+ -----------------------------------------------------------
754
+ -------------------------------------------------------------
755
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
756
+ -------------------------------------------------------------
757
+ -----------------------------------------------------------------
758
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
759
+ -----------------------------------------------------------------
760
+ -----------------------------------------------------------
761
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
762
+ -----------------------------------------------------------
763
+ -------------------------------------------------------------
764
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
765
+ -------------------------------------------------------------
766
+ -------------------------------------------------------------
767
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
768
+ -------------------------------------------------------------
769
+ -----------------------------------------------------------------
770
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
771
+ -----------------------------------------------------------------
772
+ -----------------------------------------------------------
773
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
774
+ -----------------------------------------------------------
775
+ -----------------------------------------------------------
776
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
777
+ -----------------------------------------------------------
778
+ -----------------------------------------------------------
779
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
780
+ -----------------------------------------------------------
781
+ -------------------------------------------------------------
782
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
783
+ -------------------------------------------------------------
784
+ -----------------------------------------------------------------
785
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
786
+ -----------------------------------------------------------------
787
+ -----------------------------------------------------------
788
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
789
+ -----------------------------------------------------------
790
+ -------------------------------------------------------------
791
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
792
+ -------------------------------------------------------------
793
+ -----------------------------------------------------------
794
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
795
+ -----------------------------------------------------------
796
+ -------------------------------------------------------------
797
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
798
+ -------------------------------------------------------------
799
+ -----------------------------------------------------------
800
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
801
+ -----------------------------------------------------------
802
+ -----------------------------------------------------------------
803
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
804
+ -----------------------------------------------------------------
805
+ -------------------------------------------------------------
806
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
807
+ -------------------------------------------------------------
808
+ -----------------------------------------------------------
809
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
810
+ -----------------------------------------------------------
811
+ -----------------------------------------------------------
812
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
813
+ -----------------------------------------------------------
814
+ -------------------------------------------------------------
815
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
816
+ -------------------------------------------------------------
817
+ -----------------------------------------------------------------
818
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
819
+ -----------------------------------------------------------------
820
+ -------------------------------------------------------------
821
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
822
+ -------------------------------------------------------------
823
+ -------------------------------------------------------------
824
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
825
+ -------------------------------------------------------------
826
+ -----------------------------------------------------------
827
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
828
+ -----------------------------------------------------------
829
+ -----------------------------------------------------------------
830
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
831
+ -----------------------------------------------------------------
832
+ -----------------------------------------------------------
833
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
834
+ -----------------------------------------------------------
835
+ -------------------------------------------------------------
836
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
837
+ -------------------------------------------------------------
838
+ -----------------------------------------------------------------
839
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
840
+ -----------------------------------------------------------------
841
+ -----------------------------------------------------------
842
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
843
+ -----------------------------------------------------------
844
+ -----------------------------------------------------------
845
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
846
+ -----------------------------------------------------------
847
+ -------------------------------------------------------------
848
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
849
+ -------------------------------------------------------------
850
+ -------------------------------------------------------------
851
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
852
+ -------------------------------------------------------------
853
+ -------------------------------------------------------------
854
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
855
+ -------------------------------------------------------------
856
+ -----------------------------------------------------------
857
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
858
+ -----------------------------------------------------------
859
+ -------------------------------------------------------------
860
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
861
+ -------------------------------------------------------------
862
+ -----------------------------------------------------------------
863
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
864
+ -----------------------------------------------------------------
865
+ -------------------------------------------------------------
866
+ TrixEditorTeTest: test_can_instantiate_new_trix_editor_helper
867
+ -------------------------------------------------------------
868
+ -----------------------------------------------------------
869
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
870
+ -----------------------------------------------------------
871
+ -------------------------------------------------------------------
872
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
873
+ -------------------------------------------------------------------
874
+ -----------------------------------------------------------------------
875
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
876
+ -----------------------------------------------------------------------
877
+ -------------------------------------------------------------------
878
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
879
+ -------------------------------------------------------------------
880
+ -----------------------------------------------------------------
881
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
882
+ -----------------------------------------------------------------
883
+ -----------------------------------------------------------------------
884
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
885
+ -----------------------------------------------------------------------
886
+ -------------------------------------------------------------------
887
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
888
+ -------------------------------------------------------------------
889
+ -----------------------------------------------------------------
890
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
891
+ -----------------------------------------------------------------
892
+ -------------------------------------------------------------------
893
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
894
+ -------------------------------------------------------------------
895
+ -----------------------------------------------------------
896
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
897
+ -----------------------------------------------------------
898
+ -----------------------------------------------------------------
899
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
900
+ -----------------------------------------------------------------
901
+ -------------------------------------------------------------------
902
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
903
+ -------------------------------------------------------------------
904
+ -------------------------------------------------------------------
905
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
906
+ -------------------------------------------------------------------
907
+ -----------------------------------------------------------------------
908
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
909
+ -----------------------------------------------------------------------
910
+ -----------------------------------------------------------
911
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
912
+ -----------------------------------------------------------
913
+ -------------------------------------------------------------------
914
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
915
+ -------------------------------------------------------------------
916
+ -----------------------------------------------------------------
917
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
918
+ -----------------------------------------------------------------
919
+ -------------------------------------------------------------------
920
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
921
+ -------------------------------------------------------------------
922
+ -----------------------------------------------------------------------
923
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
924
+ -----------------------------------------------------------------------
925
+ -----------------------------------------------------------
926
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
927
+ -----------------------------------------------------------
928
+ -----------------------------------------------------------------
929
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
930
+ -----------------------------------------------------------------
931
+ -------------------------------------------------------------------
932
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
933
+ -------------------------------------------------------------------
934
+ -------------------------------------------------------------------
935
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
936
+ -------------------------------------------------------------------
937
+ -----------------------------------------------------------------------
938
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
939
+ -----------------------------------------------------------------------
940
+ -----------------------------------------------------------
941
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
942
+ -----------------------------------------------------------
943
+ -----------------------------------------------------------
944
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
945
+ -----------------------------------------------------------
946
+ -------------------------------------------------------------------
947
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
948
+ -------------------------------------------------------------------
949
+ -----------------------------------------------------------------
950
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
951
+ -----------------------------------------------------------------
952
+ -----------------------------------------------------------------------
953
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
954
+ -----------------------------------------------------------------------
955
+ -------------------------------------------------------------------
956
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
957
+ -------------------------------------------------------------------
958
+ -----------------------------------------------------------
959
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
960
+ -----------------------------------------------------------
961
+ -----------------------------------------------------------------
962
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
963
+ -----------------------------------------------------------------
964
+ -----------------------------------------------------------------------
965
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
966
+ -----------------------------------------------------------------------
967
+ -------------------------------------------------------------------
968
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
969
+ -------------------------------------------------------------------
970
+ -------------------------------------------------------------------
971
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
972
+ -------------------------------------------------------------------
973
+ -----------------------------------------------------------
974
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
975
+ -----------------------------------------------------------
976
+ -----------------------------------------------------------------------
977
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
978
+ -----------------------------------------------------------------------
979
+ -----------------------------------------------------------------
980
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
981
+ -----------------------------------------------------------------
982
+ -------------------------------------------------------------------
983
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
984
+ -------------------------------------------------------------------
985
+ -------------------------------------------------------------------
986
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
987
+ -------------------------------------------------------------------
988
+ -----------------------------------------------------------------------
989
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
990
+ -----------------------------------------------------------------------
991
+ -------------------------------------------------------------------
992
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
993
+ -------------------------------------------------------------------
994
+ -----------------------------------------------------------------
995
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
996
+ -----------------------------------------------------------------
997
+ -------------------------------------------------------------------
998
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
999
+ -------------------------------------------------------------------
1000
+ -----------------------------------------------------------
1001
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1002
+ -----------------------------------------------------------
1003
+ -----------------------------------------------------------
1004
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1005
+ -----------------------------------------------------------
1006
+ -----------------------------------------------------------------------
1007
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1008
+ -----------------------------------------------------------------------
1009
+ -----------------------------------------------------------------
1010
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1011
+ -----------------------------------------------------------------
1012
+ -------------------------------------------------------------------
1013
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1014
+ -------------------------------------------------------------------
1015
+ -------------------------------------------------------------------
1016
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1017
+ -------------------------------------------------------------------
1018
+ -----------------------------------------------------------
1019
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1020
+ -----------------------------------------------------------
1021
+ -----------------------------------------------------------------------
1022
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1023
+ -----------------------------------------------------------------------
1024
+ -------------------------------------------------------------------
1025
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1026
+ -------------------------------------------------------------------
1027
+ -----------------------------------------------------------------
1028
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1029
+ -----------------------------------------------------------------
1030
+ -------------------------------------------------------------------
1031
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1032
+ -------------------------------------------------------------------
1033
+ -----------------------------------------------------------
1034
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1035
+ -----------------------------------------------------------
1036
+ -----------------------------------------------------------------------
1037
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1038
+ -----------------------------------------------------------------------
1039
+ -----------------------------------------------------------------
1040
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1041
+ -----------------------------------------------------------------
1042
+ -------------------------------------------------------------------
1043
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1044
+ -------------------------------------------------------------------
1045
+ -------------------------------------------------------------------
1046
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1047
+ -------------------------------------------------------------------
1048
+ -------------------------------------------------------------------
1049
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1050
+ -------------------------------------------------------------------
1051
+ -----------------------------------------------------------------------
1052
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1053
+ -----------------------------------------------------------------------
1054
+ -----------------------------------------------------------------
1055
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1056
+ -----------------------------------------------------------------
1057
+ -------------------------------------------------------------------
1058
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1059
+ -------------------------------------------------------------------
1060
+ -----------------------------------------------------------
1061
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1062
+ -----------------------------------------------------------
1063
+ -----------------------------------------------------------
1064
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1065
+ -----------------------------------------------------------
1066
+ -------------------------------------------------------------------
1067
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1068
+ -------------------------------------------------------------------
1069
+ -------------------------------------------------------------------
1070
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1071
+ -------------------------------------------------------------------
1072
+ -----------------------------------------------------------------
1073
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1074
+ -----------------------------------------------------------------
1075
+ -----------------------------------------------------------------------
1076
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1077
+ -----------------------------------------------------------------------
1078
+ -----------------------------------------------------------
1079
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1080
+ -----------------------------------------------------------
1081
+ -----------------------------------------------------------------------
1082
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1083
+ -----------------------------------------------------------------------
1084
+ -------------------------------------------------------------------
1085
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1086
+ -------------------------------------------------------------------
1087
+ -----------------------------------------------------------------
1088
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1089
+ -----------------------------------------------------------------
1090
+ -------------------------------------------------------------------
1091
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1092
+ -------------------------------------------------------------------
1093
+ -----------------------------------------------------------------------
1094
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1095
+ -----------------------------------------------------------------------
1096
+ -------------------------------------------------------------------
1097
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1098
+ -------------------------------------------------------------------
1099
+ -----------------------------------------------------------------
1100
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1101
+ -----------------------------------------------------------------
1102
+ -------------------------------------------------------------------
1103
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1104
+ -------------------------------------------------------------------
1105
+ -----------------------------------------------------------
1106
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1107
+ -----------------------------------------------------------
1108
+ -------------------------------------------------------------------
1109
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1110
+ -------------------------------------------------------------------
1111
+ -----------------------------------------------------------------------
1112
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1113
+ -----------------------------------------------------------------------
1114
+ -------------------------------------------------------------------
1115
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1116
+ -------------------------------------------------------------------
1117
+ -----------------------------------------------------------------
1118
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1119
+ -----------------------------------------------------------------
1120
+ -----------------------------------------------------------
1121
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1122
+ -----------------------------------------------------------
1123
+ -------------------------------------------------------------------
1124
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1125
+ -------------------------------------------------------------------
1126
+ -------------------------------------------------------------------
1127
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1128
+ -------------------------------------------------------------------
1129
+ -----------------------------------------------------------------------
1130
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1131
+ -----------------------------------------------------------------------
1132
+ -----------------------------------------------------------------
1133
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1134
+ -----------------------------------------------------------------
1135
+ -----------------------------------------------------------
1136
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1137
+ -----------------------------------------------------------
1138
+ -----------------------------------------------------------------------
1139
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1140
+ -----------------------------------------------------------------------
1141
+ -------------------------------------------------------------------
1142
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1143
+ -------------------------------------------------------------------
1144
+ -----------------------------------------------------------------
1145
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1146
+ -----------------------------------------------------------------
1147
+ -------------------------------------------------------------------
1148
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1149
+ -------------------------------------------------------------------
1150
+ -----------------------------------------------------------
1151
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1152
+ -----------------------------------------------------------
1153
+ -------------------------------------------------------------------
1154
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1155
+ -------------------------------------------------------------------
1156
+ -------------------------------------------------------------------
1157
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1158
+ -------------------------------------------------------------------
1159
+ -----------------------------------------------------------------------
1160
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1161
+ -----------------------------------------------------------------------
1162
+ -----------------------------------------------------------------
1163
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1164
+ -----------------------------------------------------------------
1165
+ -----------------------------------------------------------
1166
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1167
+ -----------------------------------------------------------
1168
+ -----------------------------------------------------------
1169
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1170
+ -----------------------------------------------------------
1171
+ -----------------------------------------------------------------------
1172
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1173
+ -----------------------------------------------------------------------
1174
+ -------------------------------------------------------------------
1175
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1176
+ -------------------------------------------------------------------
1177
+ -----------------------------------------------------------------
1178
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1179
+ -----------------------------------------------------------------
1180
+ -------------------------------------------------------------------
1181
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1182
+ -------------------------------------------------------------------
1183
+ -----------------------------------------------------------------
1184
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1185
+ -----------------------------------------------------------------
1186
+ -------------------------------------------------------------------
1187
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1188
+ -------------------------------------------------------------------
1189
+ -----------------------------------------------------------------------
1190
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1191
+ -----------------------------------------------------------------------
1192
+ -------------------------------------------------------------------
1193
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1194
+ -------------------------------------------------------------------
1195
+ -----------------------------------------------------------
1196
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1197
+ -----------------------------------------------------------
1198
+ -----------------------------------------------------------
1199
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1200
+ -----------------------------------------------------------
1201
+ -------------------------------------------------------------------
1202
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1203
+ -------------------------------------------------------------------
1204
+ -----------------------------------------------------------------
1205
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1206
+ -----------------------------------------------------------------
1207
+ -------------------------------------------------------------------
1208
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1209
+ -------------------------------------------------------------------
1210
+ -----------------------------------------------------------------------
1211
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1212
+ -----------------------------------------------------------------------
1213
+ -------------------------------------------------------------------
1214
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1215
+ -------------------------------------------------------------------
1216
+ -----------------------------------------------------------------------
1217
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1218
+ -----------------------------------------------------------------------
1219
+ -----------------------------------------------------------------
1220
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1221
+ -----------------------------------------------------------------
1222
+ -------------------------------------------------------------------
1223
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1224
+ -------------------------------------------------------------------
1225
+ -----------------------------------------------------------
1226
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1227
+ -----------------------------------------------------------
1228
+ -----------------------------------------------------------------
1229
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1230
+ -----------------------------------------------------------------
1231
+ -------------------------------------------------------------------
1232
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1233
+ -------------------------------------------------------------------
1234
+ -------------------------------------------------------------------
1235
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1236
+ -------------------------------------------------------------------
1237
+ -----------------------------------------------------------------------
1238
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1239
+ -----------------------------------------------------------------------
1240
+ -----------------------------------------------------------
1241
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1242
+ -----------------------------------------------------------
1243
+ -----------------------------------------------------------
1244
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1245
+ -----------------------------------------------------------
1246
+ -------------------------------------------------------------------
1247
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1248
+ -------------------------------------------------------------------
1249
+ -----------------------------------------------------------------
1250
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1251
+ -----------------------------------------------------------------
1252
+ -------------------------------------------------------------------
1253
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1254
+ -------------------------------------------------------------------
1255
+ -----------------------------------------------------------------------
1256
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1257
+ -----------------------------------------------------------------------
1258
+ -----------------------------------------------------------------
1259
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1260
+ -----------------------------------------------------------------
1261
+ -----------------------------------------------------------------------
1262
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1263
+ -----------------------------------------------------------------------
1264
+ -------------------------------------------------------------------
1265
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1266
+ -------------------------------------------------------------------
1267
+ -------------------------------------------------------------------
1268
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1269
+ -------------------------------------------------------------------
1270
+ -----------------------------------------------------------
1271
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1272
+ -----------------------------------------------------------
1273
+ -----------------------------------------------------------
1274
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1275
+ -----------------------------------------------------------
1276
+ -----------------------------------------------------------------------
1277
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1278
+ -----------------------------------------------------------------------
1279
+ -----------------------------------------------------------------
1280
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1281
+ -----------------------------------------------------------------
1282
+ -------------------------------------------------------------------
1283
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1284
+ -------------------------------------------------------------------
1285
+ -------------------------------------------------------------------
1286
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1287
+ -------------------------------------------------------------------
1288
+ -----------------------------------------------------------
1289
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1290
+ -----------------------------------------------------------
1291
+ -----------------------------------------------------------------------
1292
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1293
+ -----------------------------------------------------------------------
1294
+ -----------------------------------------------------------------
1295
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1296
+ -----------------------------------------------------------------
1297
+ -------------------------------------------------------------------
1298
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1299
+ -------------------------------------------------------------------
1300
+ -------------------------------------------------------------------
1301
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1302
+ -------------------------------------------------------------------
1303
+ -------------------------------------------------------------------
1304
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1305
+ -------------------------------------------------------------------
1306
+ -----------------------------------------------------------------------
1307
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1308
+ -----------------------------------------------------------------------
1309
+ -----------------------------------------------------------------
1310
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1311
+ -----------------------------------------------------------------
1312
+ -------------------------------------------------------------------
1313
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1314
+ -------------------------------------------------------------------
1315
+ -----------------------------------------------------------
1316
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1317
+ -----------------------------------------------------------
1318
+ -----------------------------------------------------------
1319
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
1320
+ -----------------------------------------------------------
1321
+ -----------------------------------------------------------------
1322
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1323
+ -----------------------------------------------------------------
1324
+ -----------------------------------------------------------
1325
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1326
+ -----------------------------------------------------------
1327
+ -------------------------------------------------------------
1328
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1329
+ -------------------------------------------------------------
1330
+ -------------------------------------------------------------
1331
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1332
+ -------------------------------------------------------------
1333
+ -----------------------------------------------------------------------
1334
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1335
+ -----------------------------------------------------------------------
1336
+ -----------------------------------------------------------------
1337
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1338
+ -----------------------------------------------------------------
1339
+ -------------------------------------------------------------------
1340
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1341
+ -------------------------------------------------------------------
1342
+ -------------------------------------------------------------------
1343
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1344
+ -------------------------------------------------------------------
1345
+ -----------------------------------------------------------------------
1346
+ TrixEditorHelperTest: test_#text_editor_tag_takes_placeholder_attribute
1347
+ -----------------------------------------------------------------------
1348
+ -------------------------------------------------------------------
1349
+ TrixEditorHelperTest: test_#text_editor_tag_properly_handles_values
1350
+ -------------------------------------------------------------------
1351
+ -------------------------------------------------------------------
1352
+ TrixEditorHelperTest: test_#text_editor_tag_returns_proper_trix_tag
1353
+ -------------------------------------------------------------------
1354
+ -----------------------------------------------------------------
1355
+ TrixEditorHelperTest: test_#text_editor_tag_takes_input_attribute
1356
+ -----------------------------------------------------------------
1357
+ -------------------------------------------------------------
1358
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1359
+ -------------------------------------------------------------
1360
+ -------------------------------------------------------------
1361
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1362
+ -------------------------------------------------------------
1363
+ -------------------------------------------------------------
1364
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1365
+ -------------------------------------------------------------
1366
+ -------------------------------------------------------------
1367
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1368
+ -------------------------------------------------------------
1369
+ -------------------------------------------------------------
1370
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1371
+ -------------------------------------------------------------
1372
+ -------------------------------------------------------------
1373
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1374
+ -------------------------------------------------------------
1375
+ -------------------------------------------------------------
1376
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1377
+ -------------------------------------------------------------
1378
+ -------------------------------------------------------------
1379
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1380
+ -------------------------------------------------------------
1381
+ -------------------------------------------------------------
1382
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1383
+ -------------------------------------------------------------
1384
+ -------------------------------------------------------------
1385
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1386
+ -------------------------------------------------------------
1387
+ -------------------------------------------------------------
1388
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1389
+ -------------------------------------------------------------
1390
+ -------------------------------------------------------------
1391
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1392
+ -------------------------------------------------------------
1393
+ -------------------------------------------------------------
1394
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1395
+ -------------------------------------------------------------
1396
+ -------------------------------------------------------------
1397
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1398
+ -------------------------------------------------------------
1399
+ -------------------------------------------------------------
1400
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1401
+ -------------------------------------------------------------
1402
+ -------------------------------------------------------------
1403
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1404
+ -------------------------------------------------------------
1405
+ -------------------------------------------------------------
1406
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1407
+ -------------------------------------------------------------
1408
+ -------------------------------------------------------------
1409
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1410
+ -------------------------------------------------------------
1411
+ -------------------------------------------------------------
1412
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1413
+ -------------------------------------------------------------
1414
+ -------------------------------------------------------------
1415
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1416
+ -------------------------------------------------------------
1417
+ -------------------------------------------------------------
1418
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1419
+ -------------------------------------------------------------
1420
+ -------------------------------------------------------------
1421
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1422
+ -------------------------------------------------------------
1423
+ -------------------------------------------------------------
1424
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1425
+ -------------------------------------------------------------
1426
+ -------------------------------------------------------------
1427
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1428
+ -------------------------------------------------------------
1429
+ -------------------------------------------------------------
1430
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1431
+ -------------------------------------------------------------
1432
+ -------------------------------------------------------------
1433
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1434
+ -------------------------------------------------------------
1435
+ -------------------------------------------------------------
1436
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1437
+ -------------------------------------------------------------
1438
+ -------------------------------------------------------------
1439
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1440
+ -------------------------------------------------------------
1441
+ -------------------------------------------------------------
1442
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1443
+ -------------------------------------------------------------
1444
+ -------------------------------------------------------------
1445
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1446
+ -------------------------------------------------------------
1447
+ -------------------------------------------------------------
1448
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1449
+ -------------------------------------------------------------
1450
+ -------------------------------------------------------------
1451
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1452
+ -------------------------------------------------------------
1453
+ -------------------------------------------------------------
1454
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1455
+ -------------------------------------------------------------
1456
+ -----------------------------------------------------------------
1457
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1458
+ -----------------------------------------------------------------
1459
+ -------------------------------------------------------------
1460
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1461
+ -------------------------------------------------------------
1462
+ -------------------------------------------------------------
1463
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1464
+ -------------------------------------------------------------
1465
+ -------------------------------------------------------------
1466
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1467
+ -------------------------------------------------------------
1468
+ -------------------------------------------------------------
1469
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1470
+ -------------------------------------------------------------
1471
+ -----------------------------------------------------------------
1472
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1473
+ -----------------------------------------------------------------
1474
+ -------------------------------------------------------------
1475
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1476
+ -------------------------------------------------------------
1477
+ -------------------------------------------------------------
1478
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1479
+ -------------------------------------------------------------
1480
+ -----------------------------------------------------------------
1481
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1482
+ -----------------------------------------------------------------
1483
+ -----------------------------------------------------------------
1484
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1485
+ -----------------------------------------------------------------
1486
+ -------------------------------------------------------------
1487
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1488
+ -------------------------------------------------------------
1489
+ -------------------------------------------------------------
1490
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1491
+ -------------------------------------------------------------
1492
+ -----------------------------------------------------------
1493
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
1494
+ -----------------------------------------------------------
1495
+ -----------------------------------------------------------
1496
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1497
+ -----------------------------------------------------------
1498
+ -------------------------------------------------------------
1499
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1500
+ -------------------------------------------------------------
1501
+ -------------------------------------------------------------
1502
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1503
+ -------------------------------------------------------------
1504
+ -----------------------------------------------------------------
1505
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1506
+ -----------------------------------------------------------------
1507
+ -----------------------------------------------------------
1508
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
1509
+ -----------------------------------------------------------
1510
+ -----------------------------------------------------------
1511
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1512
+ -----------------------------------------------------------
1513
+ -----------------------------------------------------------------
1514
+ TrixEditorTest: test_#text_editor_tag_takes_placeholder_attribute
1515
+ -----------------------------------------------------------------
1516
+ -------------------------------------------------------------
1517
+ TrixEditorTest: test_#text_editor_tag_returns_proper_trix_tag
1518
+ -------------------------------------------------------------
1519
+ -----------------------------------------------------------
1520
+ TrixEditorTest: test_#text_editor_tag_takes_input_attribute
1521
+ -----------------------------------------------------------
1522
+ -------------------------------------------------------------
1523
+ TrixEditorTest: test_#text_editor_tag_properly_handles_values
1524
+ -------------------------------------------------------------
1525
+ -----------------------------------------------------------
1526
+ TrixEditorTest: test_can_instantiate_new_trix_editor_helper
1527
+ -----------------------------------------------------------