font-awesome-rails 4.0.3.1 → 4.0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 821de7917d138661bb00d01f08f427520e006837
4
- data.tar.gz: ac31786766509fb832cdeb2e25b2e4312363281f
3
+ metadata.gz: 699e659577e8515f1d259f4a112784a460932a97
4
+ data.tar.gz: ad1a3a6fda73b9c15c616f6bc9c5a554627adc39
5
5
  SHA512:
6
- metadata.gz: 1bcbe26b981b06ab365099909ebdd49c5ba06456236804584f3fc23148282dbdf2dd660f140b1cbe4c4750758abf457134087a60f4f527b4f6056628d8ac559d
7
- data.tar.gz: a9aa4d8a0dec1fa4e7b5eac85b67965270395ef1fe7af16e3af61c25b8de83d31fe7d10ea41a1387e9606393f8343d8cc6da84f3543f728dd420506be08cb9da
6
+ metadata.gz: 2003b8aeacec3d589ee2b3a9d98639618d6a2661fa9d27f76fe55682313618ec2fb9202fbad537c2bbfa41e22d6de6dcd29e3ddd25ddc56383b87e9f4da4ceba
7
+ data.tar.gz: 6cf36cc36c88b2466f816555a65a2eac0d8e1dfd8f4d59d4198b977366773620e9932b0123d03c65f4fa1c10a3af34ea638f30aecc59509b43bc2d7b323ceb9b
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # font-awesome-rails [![Gem Version](https://badge.fury.io/rb/font-awesome-rails.png)](http://badge.fury.io/rb/font-awesome-rails) [![Build Status](https://secure.travis-ci.org/bokmann/font-awesome-rails.png)](http://travis-ci.org/bokmann/font-awesome-rails)
1
+ # font-awesome-rails [![Gem Version](http://img.shields.io/gem/v/font-awesome-rails.svg)](https://rubygems.org/gems/font-awesome-rails) [![Build Status](https://secure.travis-ci.org/bokmann/font-awesome-rails.svg)](http://travis-ci.org/bokmann/font-awesome-rails)
2
2
 
3
3
  font-awesome-rails provides the
4
4
  [Font-Awesome](http://fortawesome.github.com/Font-Awesome/) web fonts and
@@ -30,7 +30,7 @@ Congrats! You now have scalable vector icon support. Pick an icon and check out
30
30
 
31
31
  ### Sass Support
32
32
 
33
- If you prefer [SCSS](http://sass-lang.com/docs.html), add this to your
33
+ If you prefer [SCSS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html), add this to your
34
34
  `application.css.scss` file:
35
35
 
36
36
  ```scss
@@ -57,8 +57,11 @@ fa_icon "camera-retro"
57
57
  fa_icon "camera-retro", text: "Take a photo"
58
58
  # => <i class="fa fa-camera-retro"></i> Take a photo
59
59
 
60
- fa_icon "quote-left 4x", class: "muted pull-left"
61
- # => <i class="fa fa-quote-left fa-4x muted pull-left"></i>
60
+ fa_icon "chevron-right", text: "Get started", right: true
61
+ # => Get started <i class="fa fa-chevron-right"></i>
62
+
63
+ fa_icon "quote-left 4x", class: "text-muted pull-left"
64
+ # => <i class="fa fa-quote-left fa-4x text-muted pull-left"></i>
62
65
 
63
66
  content_tag(:li, fa_icon("check li", text: "Bulleted list item"))
64
67
  # => <li><i class="fa fa-check fa-li"></i> Bulleted list item</li>
@@ -108,6 +111,7 @@ so that these helpers are automatically loaded in production environments.
108
111
  | 4.0.1.0 | c84c8ab | 4.0.1 release (fixed hdd icon and fa-stack alignment) |
109
112
  | 4.0.3.0 | 0373b63 | 4.0.3 release (minor icon renames and updates) |
110
113
  | 4.0.3.1 | 0373b63 | asset pipeline improvements |
114
+ | 4.0.3.2 | 0373b63 | icon right alignment support in helpers |
111
115
 
112
116
  **note on version 0.2.0**: FontAwesome now includes scss and sass files, but
113
117
  when I used them instead of the plain ol css file included in the project, it
@@ -11,6 +11,8 @@ module FontAwesome
11
11
  #
12
12
  # fa_icon "camera-retro", text: "Take a photo"
13
13
  # # => <i class="fa fa-camera-retro"></i> Take a photo
14
+ # fa_icon "chevron-right", text: "Get started", right: true
15
+ # # => Get started <i class="fa fa-chevron-right"></i>
14
16
  #
15
17
  # fa_icon "camera-retro 2x"
16
18
  # # => <i class="fa fa-camera-retro fa-2x"></i>
@@ -32,8 +34,9 @@ module FontAwesome
32
34
  classes.concat Private.icon_names(names)
33
35
  classes.concat Array(options.delete(:class))
34
36
  text = options.delete(:text)
37
+ right_icon = options.delete(:right)
35
38
  icon = content_tag(:i, nil, options.merge(:class => classes))
36
- Private.icon_join(icon, text)
39
+ Private.icon_join(icon, text, right_icon)
37
40
  end
38
41
 
39
42
  # Creates an stack set of icon tags given a base icon name, a main icon
@@ -67,16 +70,19 @@ module FontAwesome
67
70
  icons = [base, icon]
68
71
  icons.reverse! if options.delete(:reverse)
69
72
  text = options.delete(:text)
73
+ right_icon = options.delete(:right)
70
74
  stacked_icon = content_tag(:span, safe_join(icons), options.merge(:class => classes))
71
- Private.icon_join(stacked_icon, text)
75
+ Private.icon_join(stacked_icon, text, right_icon)
72
76
  end
73
77
 
74
78
  module Private
75
79
  extend ActionView::Helpers::OutputSafetyHelper
76
80
 
77
- def self.icon_join(icon, text)
81
+ def self.icon_join(icon, text, reverse_order = false)
78
82
  return icon if text.blank?
79
- safe_join([icon, ERB::Util.html_escape(text)], " ")
83
+ elements = [icon, ERB::Util.html_escape(text)]
84
+ elements.reverse! if reverse_order
85
+ safe_join(elements, " ")
80
86
  end
81
87
 
82
88
  def self.icon_names(names = [])
@@ -1,5 +1,5 @@
1
1
  module FontAwesome
2
2
  module Rails
3
- VERSION = "4.0.3.1"
3
+ VERSION = "4.0.3.2"
4
4
  end
5
5
  end
@@ -621,3 +621,1915 @@ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:32:52 -050
621
621
  FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
622
622
  ---------------------------------------------------------------------------------
623
623
  Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:32:52 -0500
624
+ -------------------------------------------------------------------------
625
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
626
+ -------------------------------------------------------------------------
627
+ ----------------------------------------------------------------------------------
628
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
629
+ ----------------------------------------------------------------------------------
630
+ --------------------------------------------------------------------------------------------
631
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
632
+ --------------------------------------------------------------------------------------------
633
+ ----------------------------------------------------------------------------------
634
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
635
+ ----------------------------------------------------------------------------------
636
+ ---------------------------------------------------------------------------------------
637
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
638
+ ---------------------------------------------------------------------------------------
639
+ -----------------------------------------------------------------------------
640
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
641
+ -----------------------------------------------------------------------------
642
+ ------------------------------------------------------------------------------------------
643
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
644
+ ------------------------------------------------------------------------------------------
645
+ ------------------------------------------------------------------------------------------
646
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
647
+ ------------------------------------------------------------------------------------------
648
+ ---------------------------------------------------------------------------------------------
649
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
650
+ ---------------------------------------------------------------------------------------------
651
+ ----------------------------------------------------------------------------------------
652
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
653
+ ----------------------------------------------------------------------------------------
654
+ -------------------------------------------------------------------------------------------------------
655
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
656
+ -------------------------------------------------------------------------------------------------------
657
+ ---------------------------------------------------------------------------------
658
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
659
+ ---------------------------------------------------------------------------------
660
+ ----------------------------------------------------------------------------------------------------
661
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
662
+ ----------------------------------------------------------------------------------------------------
663
+ ------------------------------------------------------------------------------------------
664
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
665
+ ------------------------------------------------------------------------------------------
666
+ -----------------------------------------------------------------------------------------------
667
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
668
+ -----------------------------------------------------------------------------------------------
669
+ --------------------------------------------------------------------------------------
670
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
671
+ --------------------------------------------------------------------------------------
672
+ ----------------------------------------------------------------------------------
673
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
674
+ ----------------------------------------------------------------------------------
675
+ ------------------------------------------------------------------------------------------------
676
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
677
+ ------------------------------------------------------------------------------------------------
678
+ -------------------------------------------
679
+ FontAwesomeRailsTest: test_engine_is_loaded
680
+ -------------------------------------------
681
+ -------------------------------------------
682
+ FontAwesomeRailsTest: test_fonts_are_served
683
+ -------------------------------------------
684
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
685
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
686
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
687
+ ------------------------------------------------------------------
688
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
689
+ ------------------------------------------------------------------
690
+ Started GET "/icons" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
691
+ Processing by PagesController#icons as HTML
692
+ Completed 200 OK in 6ms (Views: 6.2ms)
693
+ -----------------------------------------------------------------------------
694
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
695
+ -----------------------------------------------------------------------------
696
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
697
+ -------------------------------------------------------------------
698
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
699
+ -------------------------------------------------------------------
700
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
701
+ -------------------------------------------------------------------
702
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
703
+ -------------------------------------------------------------------
704
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
705
+ -------------------------------------------------
706
+ FontAwesomeRailsTest: test_stylesheets_are_served
707
+ -------------------------------------------------
708
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-04 13:28:43 -0500
709
+ ---------------------------------------------------------------------------------
710
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
711
+ ---------------------------------------------------------------------------------
712
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-04 13:28:44 -0500
713
+ -------------------------------------------------------------------------
714
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
715
+ -------------------------------------------------------------------------
716
+ ----------------------------------------------------------------------------------
717
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
718
+ ----------------------------------------------------------------------------------
719
+ --------------------------------------------------------------------------------------------
720
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
721
+ --------------------------------------------------------------------------------------------
722
+ ----------------------------------------------------------------------------------
723
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
724
+ ----------------------------------------------------------------------------------
725
+ ---------------------------------------------------------------------------------------
726
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
727
+ ---------------------------------------------------------------------------------------
728
+ -----------------------------------------------------------------------------
729
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
730
+ -----------------------------------------------------------------------------
731
+ ------------------------------------------------------------------------------------------
732
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
733
+ ------------------------------------------------------------------------------------------
734
+ ------------------------------------------------------------------------------------------
735
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
736
+ ------------------------------------------------------------------------------------------
737
+ ---------------------------------------------------------------------------------------------
738
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
739
+ ---------------------------------------------------------------------------------------------
740
+ ----------------------------------------------------------------------------------------
741
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
742
+ ----------------------------------------------------------------------------------------
743
+ -------------------------------------------------------------------------------------------------------
744
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
745
+ -------------------------------------------------------------------------------------------------------
746
+ ---------------------------------------------------------------------------------
747
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
748
+ ---------------------------------------------------------------------------------
749
+ ----------------------------------------------------------------------------------------------------
750
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
751
+ ----------------------------------------------------------------------------------------------------
752
+ ------------------------------------------------------------------------------------------
753
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
754
+ ------------------------------------------------------------------------------------------
755
+ -----------------------------------------------------------------------------------------------
756
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
757
+ -----------------------------------------------------------------------------------------------
758
+ --------------------------------------------------------------------------------------
759
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
760
+ --------------------------------------------------------------------------------------
761
+ ----------------------------------------------------------------------------------
762
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
763
+ ----------------------------------------------------------------------------------
764
+ ------------------------------------------------------------------------------------------------
765
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
766
+ ------------------------------------------------------------------------------------------------
767
+ -------------------------------------------
768
+ FontAwesomeRailsTest: test_engine_is_loaded
769
+ -------------------------------------------
770
+ -------------------------------------------
771
+ FontAwesomeRailsTest: test_fonts_are_served
772
+ -------------------------------------------
773
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
774
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
775
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
776
+ ------------------------------------------------------------------
777
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
778
+ ------------------------------------------------------------------
779
+ Started GET "/icons" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
780
+ Processing by PagesController#icons as HTML
781
+ Completed 200 OK in 7ms (Views: 6.6ms)
782
+ -----------------------------------------------------------------------------
783
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
784
+ -----------------------------------------------------------------------------
785
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
786
+ -------------------------------------------------------------------
787
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
788
+ -------------------------------------------------------------------
789
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
790
+ -------------------------------------------------------------------
791
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
792
+ -------------------------------------------------------------------
793
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
794
+ -------------------------------------------------
795
+ FontAwesomeRailsTest: test_stylesheets_are_served
796
+ -------------------------------------------------
797
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-04 13:28:52 -0500
798
+ ---------------------------------------------------------------------------------
799
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
800
+ ---------------------------------------------------------------------------------
801
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-04 13:28:53 -0500
802
+ -------------------------------------------------------------------------
803
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
804
+ -------------------------------------------------------------------------
805
+ ----------------------------------------------------------------------------------
806
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
807
+ ----------------------------------------------------------------------------------
808
+ --------------------------------------------------------------------------------------------
809
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
810
+ --------------------------------------------------------------------------------------------
811
+ ----------------------------------------------------------------------------------
812
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
813
+ ----------------------------------------------------------------------------------
814
+ ---------------------------------------------------------------------------------------
815
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
816
+ ---------------------------------------------------------------------------------------
817
+ -----------------------------------------------------------------------------
818
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
819
+ -----------------------------------------------------------------------------
820
+ ------------------------------------------------------------------------------------------
821
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
822
+ ------------------------------------------------------------------------------------------
823
+ ------------------------------------------------------------------------------------------
824
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
825
+ ------------------------------------------------------------------------------------------
826
+ ---------------------------------------------------------------------------------------------
827
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
828
+ ---------------------------------------------------------------------------------------------
829
+ ----------------------------------------------------------------------------------------
830
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
831
+ ----------------------------------------------------------------------------------------
832
+ -------------------------------------------------------------------------------------------------------
833
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
834
+ -------------------------------------------------------------------------------------------------------
835
+ ---------------------------------------------------------------------------------
836
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
837
+ ---------------------------------------------------------------------------------
838
+ ----------------------------------------------------------------------------------------------------
839
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
840
+ ----------------------------------------------------------------------------------------------------
841
+ ------------------------------------------------------------------------------------------
842
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
843
+ ------------------------------------------------------------------------------------------
844
+ -----------------------------------------------------------------------------------------------
845
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
846
+ -----------------------------------------------------------------------------------------------
847
+ --------------------------------------------------------------------------------------
848
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
849
+ --------------------------------------------------------------------------------------
850
+ ----------------------------------------------------------------------------------
851
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
852
+ ----------------------------------------------------------------------------------
853
+ ------------------------------------------------------------------------------------------------
854
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
855
+ ------------------------------------------------------------------------------------------------
856
+ -------------------------------------------
857
+ FontAwesomeRailsTest: test_engine_is_loaded
858
+ -------------------------------------------
859
+ -------------------------------------------
860
+ FontAwesomeRailsTest: test_fonts_are_served
861
+ -------------------------------------------
862
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
863
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
864
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
865
+ ------------------------------------------------------------------
866
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
867
+ ------------------------------------------------------------------
868
+ Started GET "/icons" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
869
+ Processing by PagesController#icons as HTML
870
+ Completed 200 OK in 8ms (Views: 7.8ms)
871
+ -----------------------------------------------------------------------------
872
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
873
+ -----------------------------------------------------------------------------
874
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
875
+ -------------------------------------------------------------------
876
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
877
+ -------------------------------------------------------------------
878
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
879
+ -------------------------------------------------------------------
880
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
881
+ -------------------------------------------------------------------
882
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
883
+ -------------------------------------------------
884
+ FontAwesomeRailsTest: test_stylesheets_are_served
885
+ -------------------------------------------------
886
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
887
+ ---------------------------------------------------------------------------------
888
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
889
+ ---------------------------------------------------------------------------------
890
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-27 11:20:50 -0500
891
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
892
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
893
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
894
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
895
+ Processing by PagesController#icons as HTML
896
+ Completed 200 OK in 3.4ms (Views: 3.3ms)
897
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
898
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
899
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
900
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:46:08 -0500
901
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:46:09 -0500
902
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
903
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
904
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
905
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
906
+ Processing by PagesController#icons as HTML
907
+ Completed 200 OK in 4.3ms (Views: 4.1ms)
908
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
909
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:46:36 -0500
910
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:46:37 -0500
911
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:46:37 -0500
912
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:46:37 -0500
913
+ -------------------------------------------------------------------------
914
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
915
+ -------------------------------------------------------------------------
916
+ ----------------------------------------------------------------------------------
917
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
918
+ ----------------------------------------------------------------------------------
919
+ --------------------------------------------------------------------------------------------
920
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
921
+ --------------------------------------------------------------------------------------------
922
+ ----------------------------------------------------------------------------------
923
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
924
+ ----------------------------------------------------------------------------------
925
+ ---------------------------------------------------------------------------------------
926
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
927
+ ---------------------------------------------------------------------------------------
928
+ -----------------------------------------------------------------------------
929
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
930
+ -----------------------------------------------------------------------------
931
+ ------------------------------------------------------------------------------------------
932
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
933
+ ------------------------------------------------------------------------------------------
934
+ ------------------------------------------------------------------------------------------
935
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
936
+ ------------------------------------------------------------------------------------------
937
+ ---------------------------------------------------------------------------------------------
938
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
939
+ ---------------------------------------------------------------------------------------------
940
+ ----------------------------------------------------------------------------------------
941
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
942
+ ----------------------------------------------------------------------------------------
943
+ -------------------------------------------------------------------------------------------------------
944
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
945
+ -------------------------------------------------------------------------------------------------------
946
+ ---------------------------------------------------------------------------------
947
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
948
+ ---------------------------------------------------------------------------------
949
+ ----------------------------------------------------------------------------------------------------
950
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
951
+ ----------------------------------------------------------------------------------------------------
952
+ ------------------------------------------------------------------------------------------
953
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
954
+ ------------------------------------------------------------------------------------------
955
+ -----------------------------------------------------------------------------------------------
956
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
957
+ -----------------------------------------------------------------------------------------------
958
+ --------------------------------------------------------------------------------------
959
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
960
+ --------------------------------------------------------------------------------------
961
+ ----------------------------------------------------------------------------------
962
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
963
+ ----------------------------------------------------------------------------------
964
+ ------------------------------------------------------------------------------------------------
965
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
966
+ ------------------------------------------------------------------------------------------------
967
+ -------------------------------------------
968
+ FontAwesomeRailsTest: test_engine_is_loaded
969
+ -------------------------------------------
970
+ -------------------------------------------
971
+ FontAwesomeRailsTest: test_fonts_are_served
972
+ -------------------------------------------
973
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
974
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
975
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
976
+ ------------------------------------------------------------------
977
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
978
+ ------------------------------------------------------------------
979
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
980
+ Processing by PagesController#icons as HTML
981
+ Completed 200 OK in 5ms (Views: 4.4ms)
982
+ -----------------------------------------------------------------------------
983
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
984
+ -----------------------------------------------------------------------------
985
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
986
+ -------------------------------------------------------------------
987
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
988
+ -------------------------------------------------------------------
989
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
990
+ -------------------------------------------------------------------
991
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
992
+ -------------------------------------------------------------------
993
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
994
+ -------------------------------------------------
995
+ FontAwesomeRailsTest: test_stylesheets_are_served
996
+ -------------------------------------------------
997
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:49:31 -0500
998
+ ---------------------------------------------------------------------------------
999
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1000
+ ---------------------------------------------------------------------------------
1001
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:49:32 -0500
1002
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1003
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1004
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1005
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1006
+ Processing by PagesController#icons as HTML
1007
+ Completed 200 OK in 3.9ms (Views: 3.8ms)
1008
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1009
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1010
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1011
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1012
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:50:33 -0500
1013
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1014
+ Served asset /fontawesome-webfont.eot - 200 OK (3ms)
1015
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1016
+ Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
1017
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1018
+ Served asset /fontawesome-webfont.woff - 200 OK (2ms)
1019
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1020
+ Processing by PagesController#icons as HTML
1021
+ Completed 200 OK in 3.6ms (Views: 3.5ms)
1022
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1023
+ Compiled font-awesome.css (17ms) (pid 96350)
1024
+ Compiled sprockets-require.css (19ms) (pid 96350)
1025
+ Served asset /sprockets-require.css - 200 OK (23ms)
1026
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1027
+ Compiled font-awesome.css (20ms) (pid 96350)
1028
+ Compiled sass-import.css (147ms) (pid 96350)
1029
+ Served asset /sass-import.css - 200 OK (152ms)
1030
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1031
+ Compiled font-awesome.css (18ms) (pid 96350)
1032
+ Compiled scss-import.css (150ms) (pid 96350)
1033
+ Served asset /scss-import.css - 200 OK (154ms)
1034
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1035
+ Compiled font-awesome.css (20ms) (pid 96350)
1036
+ Served asset /font-awesome.css - 200 OK (23ms)
1037
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:51:18 -0500
1038
+ Served asset /font-awesome.css - 200 OK (0ms)
1039
+ -------------------------------------------------------------------------
1040
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1041
+ -------------------------------------------------------------------------
1042
+ ----------------------------------------------------------------------------------
1043
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1044
+ ----------------------------------------------------------------------------------
1045
+ --------------------------------------------------------------------------------------------
1046
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1047
+ --------------------------------------------------------------------------------------------
1048
+ ----------------------------------------------------------------------------------
1049
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1050
+ ----------------------------------------------------------------------------------
1051
+ ---------------------------------------------------------------------------------------
1052
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1053
+ ---------------------------------------------------------------------------------------
1054
+ -----------------------------------------------------------------------------
1055
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1056
+ -----------------------------------------------------------------------------
1057
+ ------------------------------------------------------------------------------------------
1058
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1059
+ ------------------------------------------------------------------------------------------
1060
+ ------------------------------------------------------------------------------------------
1061
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1062
+ ------------------------------------------------------------------------------------------
1063
+ ---------------------------------------------------------------------------------------------
1064
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1065
+ ---------------------------------------------------------------------------------------------
1066
+ ----------------------------------------------------------------------------------------
1067
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1068
+ ----------------------------------------------------------------------------------------
1069
+ -------------------------------------------------------------------------------------------------------
1070
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1071
+ -------------------------------------------------------------------------------------------------------
1072
+ ---------------------------------------------------------------------------------
1073
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1074
+ ---------------------------------------------------------------------------------
1075
+ ----------------------------------------------------------------------------------------------------
1076
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1077
+ ----------------------------------------------------------------------------------------------------
1078
+ ------------------------------------------------------------------------------------------
1079
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1080
+ ------------------------------------------------------------------------------------------
1081
+ -----------------------------------------------------------------------------------------------
1082
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1083
+ -----------------------------------------------------------------------------------------------
1084
+ --------------------------------------------------------------------------------------
1085
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1086
+ --------------------------------------------------------------------------------------
1087
+ ----------------------------------------------------------------------------------
1088
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1089
+ ----------------------------------------------------------------------------------
1090
+ ------------------------------------------------------------------------------------------------
1091
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1092
+ ------------------------------------------------------------------------------------------------
1093
+ -------------------------------------------
1094
+ FontAwesomeRailsTest: test_engine_is_loaded
1095
+ -------------------------------------------
1096
+ -------------------------------------------
1097
+ FontAwesomeRailsTest: test_fonts_are_served
1098
+ -------------------------------------------
1099
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1100
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1101
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1102
+ ------------------------------------------------------------------
1103
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1104
+ ------------------------------------------------------------------
1105
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1106
+ Processing by PagesController#icons as HTML
1107
+ Completed 200 OK in 4ms (Views: 4.0ms)
1108
+ -----------------------------------------------------------------------------
1109
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1110
+ -----------------------------------------------------------------------------
1111
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1112
+ -------------------------------------------------------------------
1113
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1114
+ -------------------------------------------------------------------
1115
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1116
+ -------------------------------------------------------------------
1117
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1118
+ -------------------------------------------------------------------
1119
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:51:52 -0500
1120
+ -------------------------------------------------
1121
+ FontAwesomeRailsTest: test_stylesheets_are_served
1122
+ -------------------------------------------------
1123
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:51:53 -0500
1124
+ ---------------------------------------------------------------------------------
1125
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1126
+ ---------------------------------------------------------------------------------
1127
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:51:53 -0500
1128
+ -------------------------------------------------------------------------
1129
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1130
+ -------------------------------------------------------------------------
1131
+ ----------------------------------------------------------------------------------
1132
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1133
+ ----------------------------------------------------------------------------------
1134
+ --------------------------------------------------------------------------------------------
1135
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1136
+ --------------------------------------------------------------------------------------------
1137
+ ----------------------------------------------------------------------------------
1138
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1139
+ ----------------------------------------------------------------------------------
1140
+ ---------------------------------------------------------------------------------------
1141
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1142
+ ---------------------------------------------------------------------------------------
1143
+ -----------------------------------------------------------------------------
1144
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1145
+ -----------------------------------------------------------------------------
1146
+ ------------------------------------------------------------------------------------------
1147
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1148
+ ------------------------------------------------------------------------------------------
1149
+ ------------------------------------------------------------------------------------------
1150
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1151
+ ------------------------------------------------------------------------------------------
1152
+ ---------------------------------------------------------------------------------------------
1153
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1154
+ ---------------------------------------------------------------------------------------------
1155
+ ----------------------------------------------------------------------------------------
1156
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1157
+ ----------------------------------------------------------------------------------------
1158
+ -------------------------------------------------------------------------------------------------------
1159
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1160
+ -------------------------------------------------------------------------------------------------------
1161
+ ---------------------------------------------------------------------------------
1162
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1163
+ ---------------------------------------------------------------------------------
1164
+ ----------------------------------------------------------------------------------------------------
1165
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1166
+ ----------------------------------------------------------------------------------------------------
1167
+ ------------------------------------------------------------------------------------------
1168
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1169
+ ------------------------------------------------------------------------------------------
1170
+ -----------------------------------------------------------------------------------------------
1171
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1172
+ -----------------------------------------------------------------------------------------------
1173
+ --------------------------------------------------------------------------------------
1174
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1175
+ --------------------------------------------------------------------------------------
1176
+ ----------------------------------------------------------------------------------
1177
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1178
+ ----------------------------------------------------------------------------------
1179
+ ------------------------------------------------------------------------------------------------
1180
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1181
+ ------------------------------------------------------------------------------------------------
1182
+ -------------------------------------------
1183
+ FontAwesomeRailsTest: test_engine_is_loaded
1184
+ -------------------------------------------
1185
+ -------------------------------------------
1186
+ FontAwesomeRailsTest: test_fonts_are_served
1187
+ -------------------------------------------
1188
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1189
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1190
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1191
+ ------------------------------------------------------------------
1192
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1193
+ ------------------------------------------------------------------
1194
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1195
+ Processing by PagesController#icons as HTML
1196
+ Completed 200 OK in 4ms (Views: 3.9ms)
1197
+ -----------------------------------------------------------------------------
1198
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1199
+ -----------------------------------------------------------------------------
1200
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1201
+ -------------------------------------------------------------------
1202
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1203
+ -------------------------------------------------------------------
1204
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1205
+ -------------------------------------------------------------------
1206
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1207
+ -------------------------------------------------------------------
1208
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:52:47 -0500
1209
+ -------------------------------------------------
1210
+ FontAwesomeRailsTest: test_stylesheets_are_served
1211
+ -------------------------------------------------
1212
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:52:48 -0500
1213
+ ---------------------------------------------------------------------------------
1214
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1215
+ ---------------------------------------------------------------------------------
1216
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:52:48 -0500
1217
+ -------------------------------------------------------------------------
1218
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1219
+ -------------------------------------------------------------------------
1220
+ ----------------------------------------------------------------------------------
1221
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1222
+ ----------------------------------------------------------------------------------
1223
+ --------------------------------------------------------------------------------------------
1224
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1225
+ --------------------------------------------------------------------------------------------
1226
+ ----------------------------------------------------------------------------------
1227
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1228
+ ----------------------------------------------------------------------------------
1229
+ ---------------------------------------------------------------------------------------
1230
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1231
+ ---------------------------------------------------------------------------------------
1232
+ -----------------------------------------------------------------------------
1233
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1234
+ -----------------------------------------------------------------------------
1235
+ ------------------------------------------------------------------------------------------
1236
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1237
+ ------------------------------------------------------------------------------------------
1238
+ ------------------------------------------------------------------------------------------
1239
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1240
+ ------------------------------------------------------------------------------------------
1241
+ ---------------------------------------------------------------------------------------------
1242
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1243
+ ---------------------------------------------------------------------------------------------
1244
+ ----------------------------------------------------------------------------------------
1245
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1246
+ ----------------------------------------------------------------------------------------
1247
+ -------------------------------------------------------------------------------------------------------
1248
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1249
+ -------------------------------------------------------------------------------------------------------
1250
+ ---------------------------------------------------------------------------------
1251
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1252
+ ---------------------------------------------------------------------------------
1253
+ ----------------------------------------------------------------------------------------------------
1254
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1255
+ ----------------------------------------------------------------------------------------------------
1256
+ ------------------------------------------------------------------------------------------
1257
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1258
+ ------------------------------------------------------------------------------------------
1259
+ -----------------------------------------------------------------------------------------------
1260
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1261
+ -----------------------------------------------------------------------------------------------
1262
+ --------------------------------------------------------------------------------------
1263
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1264
+ --------------------------------------------------------------------------------------
1265
+ ----------------------------------------------------------------------------------
1266
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1267
+ ----------------------------------------------------------------------------------
1268
+ ------------------------------------------------------------------------------------------------
1269
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1270
+ ------------------------------------------------------------------------------------------------
1271
+ -------------------------------------------
1272
+ FontAwesomeRailsTest: test_engine_is_loaded
1273
+ -------------------------------------------
1274
+ -------------------------------------------
1275
+ FontAwesomeRailsTest: test_fonts_are_served
1276
+ -------------------------------------------
1277
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1278
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1279
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1280
+ ------------------------------------------------------------------
1281
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1282
+ ------------------------------------------------------------------
1283
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1284
+ Processing by PagesController#icons as HTML
1285
+ Completed 200 OK in 4ms (Views: 3.9ms)
1286
+ -----------------------------------------------------------------------------
1287
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1288
+ -----------------------------------------------------------------------------
1289
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1290
+ -------------------------------------------------------------------
1291
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1292
+ -------------------------------------------------------------------
1293
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1294
+ -------------------------------------------------------------------
1295
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1296
+ -------------------------------------------------------------------
1297
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:53:02 -0500
1298
+ -------------------------------------------------
1299
+ FontAwesomeRailsTest: test_stylesheets_are_served
1300
+ -------------------------------------------------
1301
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:53:03 -0500
1302
+ ---------------------------------------------------------------------------------
1303
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1304
+ ---------------------------------------------------------------------------------
1305
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:53:03 -0500
1306
+ -------------------------------------------------------------------------
1307
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1308
+ -------------------------------------------------------------------------
1309
+ ----------------------------------------------------------------------------------
1310
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1311
+ ----------------------------------------------------------------------------------
1312
+ --------------------------------------------------------------------------------------------
1313
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1314
+ --------------------------------------------------------------------------------------------
1315
+ ----------------------------------------------------------------------------------
1316
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1317
+ ----------------------------------------------------------------------------------
1318
+ ---------------------------------------------------------------------------------------
1319
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1320
+ ---------------------------------------------------------------------------------------
1321
+ -----------------------------------------------------------------------------
1322
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1323
+ -----------------------------------------------------------------------------
1324
+ ------------------------------------------------------------------------------------------
1325
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1326
+ ------------------------------------------------------------------------------------------
1327
+ ------------------------------------------------------------------------------------------
1328
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1329
+ ------------------------------------------------------------------------------------------
1330
+ ---------------------------------------------------------------------------------------------
1331
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1332
+ ---------------------------------------------------------------------------------------------
1333
+ ----------------------------------------------------------------------------------------
1334
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1335
+ ----------------------------------------------------------------------------------------
1336
+ -------------------------------------------------------------------------------------------------------
1337
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1338
+ -------------------------------------------------------------------------------------------------------
1339
+ ---------------------------------------------------------------------------------
1340
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1341
+ ---------------------------------------------------------------------------------
1342
+ ----------------------------------------------------------------------------------------------------
1343
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1344
+ ----------------------------------------------------------------------------------------------------
1345
+ ------------------------------------------------------------------------------------------
1346
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1347
+ ------------------------------------------------------------------------------------------
1348
+ -----------------------------------------------------------------------------------------------
1349
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1350
+ -----------------------------------------------------------------------------------------------
1351
+ --------------------------------------------------------------------------------------
1352
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1353
+ --------------------------------------------------------------------------------------
1354
+ ----------------------------------------------------------------------------------
1355
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1356
+ ----------------------------------------------------------------------------------
1357
+ ------------------------------------------------------------------------------------------------
1358
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1359
+ ------------------------------------------------------------------------------------------------
1360
+ -------------------------------------------
1361
+ FontAwesomeRailsTest: test_engine_is_loaded
1362
+ -------------------------------------------
1363
+ -------------------------------------------
1364
+ FontAwesomeRailsTest: test_fonts_are_served
1365
+ -------------------------------------------
1366
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1367
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1368
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1369
+ ------------------------------------------------------------------
1370
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1371
+ ------------------------------------------------------------------
1372
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1373
+ Processing by PagesController#icons as HTML
1374
+ Completed 200 OK in 5ms (Views: 4.8ms)
1375
+ -----------------------------------------------------------------------------
1376
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1377
+ -----------------------------------------------------------------------------
1378
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1379
+ -------------------------------------------------------------------
1380
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1381
+ -------------------------------------------------------------------
1382
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1383
+ -------------------------------------------------------------------
1384
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1385
+ -------------------------------------------------------------------
1386
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1387
+ -------------------------------------------------
1388
+ FontAwesomeRailsTest: test_stylesheets_are_served
1389
+ -------------------------------------------------
1390
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:53:24 -0500
1391
+ ---------------------------------------------------------------------------------
1392
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1393
+ ---------------------------------------------------------------------------------
1394
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:53:25 -0500
1395
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1396
+ Served asset /fontawesome-webfont.eot - 200 OK (2ms)
1397
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1398
+ Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
1399
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1400
+ Served asset /fontawesome-webfont.woff - 200 OK (2ms)
1401
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1402
+ Processing by PagesController#icons as HTML
1403
+ Completed 200 OK in 4.2ms (Views: 4.1ms)
1404
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1405
+ Compiled font-awesome.css (18ms) (pid 98621)
1406
+ Compiled sprockets-require.css (21ms) (pid 98621)
1407
+ Served asset /sprockets-require.css - 200 OK (24ms)
1408
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1409
+ Compiled font-awesome.css (18ms) (pid 98621)
1410
+ Compiled sass-import.css (148ms) (pid 98621)
1411
+ Served asset /sass-import.css - 200 OK (152ms)
1412
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1413
+ Compiled font-awesome.css (18ms) (pid 98621)
1414
+ Compiled scss-import.css (151ms) (pid 98621)
1415
+ Served asset /scss-import.css - 200 OK (155ms)
1416
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1417
+ Compiled font-awesome.css (20ms) (pid 98621)
1418
+ Served asset /font-awesome.css - 200 OK (23ms)
1419
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:54:09 -0500
1420
+ Served asset /font-awesome.css - 200 OK (0ms)
1421
+ -------------------------------------------------------------------------
1422
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1423
+ -------------------------------------------------------------------------
1424
+ ----------------------------------------------------------------------------------
1425
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1426
+ ----------------------------------------------------------------------------------
1427
+ --------------------------------------------------------------------------------------------
1428
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1429
+ --------------------------------------------------------------------------------------------
1430
+ ----------------------------------------------------------------------------------
1431
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1432
+ ----------------------------------------------------------------------------------
1433
+ ---------------------------------------------------------------------------------------
1434
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1435
+ ---------------------------------------------------------------------------------------
1436
+ -----------------------------------------------------------------------------
1437
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1438
+ -----------------------------------------------------------------------------
1439
+ ------------------------------------------------------------------------------------------
1440
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1441
+ ------------------------------------------------------------------------------------------
1442
+ ------------------------------------------------------------------------------------------
1443
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1444
+ ------------------------------------------------------------------------------------------
1445
+ ---------------------------------------------------------------------------------------------
1446
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1447
+ ---------------------------------------------------------------------------------------------
1448
+ ----------------------------------------------------------------------------------------
1449
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1450
+ ----------------------------------------------------------------------------------------
1451
+ -------------------------------------------------------------------------------------------------------
1452
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1453
+ -------------------------------------------------------------------------------------------------------
1454
+ ---------------------------------------------------------------------------------
1455
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1456
+ ---------------------------------------------------------------------------------
1457
+ ----------------------------------------------------------------------------------------------------
1458
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1459
+ ----------------------------------------------------------------------------------------------------
1460
+ ------------------------------------------------------------------------------------------
1461
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1462
+ ------------------------------------------------------------------------------------------
1463
+ -----------------------------------------------------------------------------------------------
1464
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1465
+ -----------------------------------------------------------------------------------------------
1466
+ --------------------------------------------------------------------------------------
1467
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1468
+ --------------------------------------------------------------------------------------
1469
+ ----------------------------------------------------------------------------------
1470
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1471
+ ----------------------------------------------------------------------------------
1472
+ ------------------------------------------------------------------------------------------------
1473
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1474
+ ------------------------------------------------------------------------------------------------
1475
+ -------------------------------------------
1476
+ FontAwesomeRailsTest: test_engine_is_loaded
1477
+ -------------------------------------------
1478
+ -------------------------------------------
1479
+ FontAwesomeRailsTest: test_fonts_are_served
1480
+ -------------------------------------------
1481
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1482
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1483
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1484
+ ------------------------------------------------------------------
1485
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1486
+ ------------------------------------------------------------------
1487
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1488
+ Processing by PagesController#icons as HTML
1489
+ Completed 200 OK in 5ms (Views: 4.4ms)
1490
+ -----------------------------------------------------------------------------
1491
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1492
+ -----------------------------------------------------------------------------
1493
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1494
+ -------------------------------------------------------------------
1495
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1496
+ -------------------------------------------------------------------
1497
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1498
+ -------------------------------------------------------------------
1499
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1500
+ -------------------------------------------------------------------
1501
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1502
+ -------------------------------------------------
1503
+ FontAwesomeRailsTest: test_stylesheets_are_served
1504
+ -------------------------------------------------
1505
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:54:58 -0500
1506
+ ---------------------------------------------------------------------------------
1507
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1508
+ ---------------------------------------------------------------------------------
1509
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:54:59 -0500
1510
+ -------------------------------------------------------------------------
1511
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1512
+ -------------------------------------------------------------------------
1513
+ ----------------------------------------------------------------------------------
1514
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1515
+ ----------------------------------------------------------------------------------
1516
+ --------------------------------------------------------------------------------------------
1517
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1518
+ --------------------------------------------------------------------------------------------
1519
+ ----------------------------------------------------------------------------------
1520
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1521
+ ----------------------------------------------------------------------------------
1522
+ ---------------------------------------------------------------------------------------
1523
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1524
+ ---------------------------------------------------------------------------------------
1525
+ -----------------------------------------------------------------------------
1526
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1527
+ -----------------------------------------------------------------------------
1528
+ ------------------------------------------------------------------------------------------
1529
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1530
+ ------------------------------------------------------------------------------------------
1531
+ ------------------------------------------------------------------------------------------
1532
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1533
+ ------------------------------------------------------------------------------------------
1534
+ ---------------------------------------------------------------------------------------------
1535
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1536
+ ---------------------------------------------------------------------------------------------
1537
+ ----------------------------------------------------------------------------------------
1538
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1539
+ ----------------------------------------------------------------------------------------
1540
+ -------------------------------------------------------------------------------------------------------
1541
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1542
+ -------------------------------------------------------------------------------------------------------
1543
+ ---------------------------------------------------------------------------------
1544
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1545
+ ---------------------------------------------------------------------------------
1546
+ ----------------------------------------------------------------------------------------------------
1547
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1548
+ ----------------------------------------------------------------------------------------------------
1549
+ ------------------------------------------------------------------------------------------
1550
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1551
+ ------------------------------------------------------------------------------------------
1552
+ -----------------------------------------------------------------------------------------------
1553
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1554
+ -----------------------------------------------------------------------------------------------
1555
+ --------------------------------------------------------------------------------------
1556
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1557
+ --------------------------------------------------------------------------------------
1558
+ ----------------------------------------------------------------------------------
1559
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1560
+ ----------------------------------------------------------------------------------
1561
+ ------------------------------------------------------------------------------------------------
1562
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1563
+ ------------------------------------------------------------------------------------------------
1564
+ -------------------------------------------
1565
+ FontAwesomeRailsTest: test_engine_is_loaded
1566
+ -------------------------------------------
1567
+ -------------------------------------------
1568
+ FontAwesomeRailsTest: test_fonts_are_served
1569
+ -------------------------------------------
1570
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1571
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1572
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1573
+ ------------------------------------------------------------------
1574
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1575
+ ------------------------------------------------------------------
1576
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1577
+ Processing by PagesController#icons as HTML
1578
+ Completed 200 OK in 4ms (Views: 3.9ms)
1579
+ -----------------------------------------------------------------------------
1580
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1581
+ -----------------------------------------------------------------------------
1582
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1583
+ -------------------------------------------------------------------
1584
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1585
+ -------------------------------------------------------------------
1586
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1587
+ -------------------------------------------------------------------
1588
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1589
+ -------------------------------------------------------------------
1590
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:55:45 -0500
1591
+ -------------------------------------------------
1592
+ FontAwesomeRailsTest: test_stylesheets_are_served
1593
+ -------------------------------------------------
1594
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:55:46 -0500
1595
+ ---------------------------------------------------------------------------------
1596
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1597
+ ---------------------------------------------------------------------------------
1598
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:55:46 -0500
1599
+ -------------------------------------------
1600
+ FontAwesomeRailsTest: test_engine_is_loaded
1601
+ -------------------------------------------
1602
+ -------------------------------------------
1603
+ FontAwesomeRailsTest: test_fonts_are_served
1604
+ -------------------------------------------
1605
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1606
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1607
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1608
+ ------------------------------------------------------------------
1609
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1610
+ ------------------------------------------------------------------
1611
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1612
+ Processing by PagesController#icons as HTML
1613
+ Completed 200 OK in 4ms (Views: 3.7ms)
1614
+ -----------------------------------------------------------------------------
1615
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1616
+ -----------------------------------------------------------------------------
1617
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1618
+ -------------------------------------------------------------------
1619
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1620
+ -------------------------------------------------------------------
1621
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:56:17 -0500
1622
+ -------------------------------------------------------------------
1623
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1624
+ -------------------------------------------------------------------
1625
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:56:18 -0500
1626
+ -------------------------------------------------
1627
+ FontAwesomeRailsTest: test_stylesheets_are_served
1628
+ -------------------------------------------------
1629
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:56:18 -0500
1630
+ ---------------------------------------------------------------------------------
1631
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1632
+ ---------------------------------------------------------------------------------
1633
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:56:18 -0500
1634
+ -------------------------------------------------------------------------
1635
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1636
+ -------------------------------------------------------------------------
1637
+ ----------------------------------------------------------------------------------
1638
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1639
+ ----------------------------------------------------------------------------------
1640
+ --------------------------------------------------------------------------------------------
1641
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1642
+ --------------------------------------------------------------------------------------------
1643
+ ----------------------------------------------------------------------------------
1644
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1645
+ ----------------------------------------------------------------------------------
1646
+ ---------------------------------------------------------------------------------------
1647
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1648
+ ---------------------------------------------------------------------------------------
1649
+ -----------------------------------------------------------------------------
1650
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1651
+ -----------------------------------------------------------------------------
1652
+ ------------------------------------------------------------------------------------------
1653
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1654
+ ------------------------------------------------------------------------------------------
1655
+ ------------------------------------------------------------------------------------------
1656
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1657
+ ------------------------------------------------------------------------------------------
1658
+ ---------------------------------------------------------------------------------------------
1659
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1660
+ ---------------------------------------------------------------------------------------------
1661
+ ----------------------------------------------------------------------------------------
1662
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1663
+ ----------------------------------------------------------------------------------------
1664
+ -------------------------------------------------------------------------------------------------------
1665
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1666
+ -------------------------------------------------------------------------------------------------------
1667
+ ---------------------------------------------------------------------------------
1668
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1669
+ ---------------------------------------------------------------------------------
1670
+ ----------------------------------------------------------------------------------------------------
1671
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1672
+ ----------------------------------------------------------------------------------------------------
1673
+ ------------------------------------------------------------------------------------------
1674
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1675
+ ------------------------------------------------------------------------------------------
1676
+ -----------------------------------------------------------------------------------------------
1677
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1678
+ -----------------------------------------------------------------------------------------------
1679
+ --------------------------------------------------------------------------------------
1680
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1681
+ --------------------------------------------------------------------------------------
1682
+ ----------------------------------------------------------------------------------
1683
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1684
+ ----------------------------------------------------------------------------------
1685
+ ------------------------------------------------------------------------------------------------
1686
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1687
+ ------------------------------------------------------------------------------------------------
1688
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1689
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1690
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1691
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1692
+ Processing by PagesController#icons as HTML
1693
+ Completed 200 OK in 3.7ms (Views: 3.6ms)
1694
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1695
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 17:57:04 -0500
1696
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 17:57:05 -0500
1697
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:57:05 -0500
1698
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 17:57:05 -0500
1699
+ -------------------------------------------------------------------------
1700
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1701
+ -------------------------------------------------------------------------
1702
+ ----------------------------------------------------------------------------------
1703
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1704
+ ----------------------------------------------------------------------------------
1705
+ --------------------------------------------------------------------------------------------
1706
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1707
+ --------------------------------------------------------------------------------------------
1708
+ ----------------------------------------------------------------------------------
1709
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1710
+ ----------------------------------------------------------------------------------
1711
+ ---------------------------------------------------------------------------------------
1712
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1713
+ ---------------------------------------------------------------------------------------
1714
+ -----------------------------------------------------------------------------
1715
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1716
+ -----------------------------------------------------------------------------
1717
+ ------------------------------------------------------------------------------------------
1718
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1719
+ ------------------------------------------------------------------------------------------
1720
+ ------------------------------------------------------------------------------------------
1721
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1722
+ ------------------------------------------------------------------------------------------
1723
+ ---------------------------------------------------------------------------------------------
1724
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1725
+ ---------------------------------------------------------------------------------------------
1726
+ ----------------------------------------------------------------------------------------
1727
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1728
+ ----------------------------------------------------------------------------------------
1729
+ -------------------------------------------------------------------------------------------------------
1730
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1731
+ -------------------------------------------------------------------------------------------------------
1732
+ ---------------------------------------------------------------------------------
1733
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1734
+ ---------------------------------------------------------------------------------
1735
+ ----------------------------------------------------------------------------------------------------
1736
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1737
+ ----------------------------------------------------------------------------------------------------
1738
+ ------------------------------------------------------------------------------------------
1739
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1740
+ ------------------------------------------------------------------------------------------
1741
+ -----------------------------------------------------------------------------------------------
1742
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1743
+ -----------------------------------------------------------------------------------------------
1744
+ --------------------------------------------------------------------------------------
1745
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1746
+ --------------------------------------------------------------------------------------
1747
+ ----------------------------------------------------------------------------------
1748
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1749
+ ----------------------------------------------------------------------------------
1750
+ ------------------------------------------------------------------------------------------------
1751
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1752
+ ------------------------------------------------------------------------------------------------
1753
+ -------------------------------------------
1754
+ FontAwesomeRailsTest: test_engine_is_loaded
1755
+ -------------------------------------------
1756
+ -------------------------------------------
1757
+ FontAwesomeRailsTest: test_fonts_are_served
1758
+ -------------------------------------------
1759
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1760
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1761
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1762
+ ------------------------------------------------------------------
1763
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1764
+ ------------------------------------------------------------------
1765
+ Started GET "/icons" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1766
+ Processing by PagesController#icons as HTML
1767
+ Completed 200 OK in 4ms (Views: 4.2ms)
1768
+ -----------------------------------------------------------------------------
1769
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1770
+ -----------------------------------------------------------------------------
1771
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1772
+ -------------------------------------------------------------------
1773
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1774
+ -------------------------------------------------------------------
1775
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1776
+ -------------------------------------------------------------------
1777
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1778
+ -------------------------------------------------------------------
1779
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-02-23 20:21:50 -0500
1780
+ -------------------------------------------------
1781
+ FontAwesomeRailsTest: test_stylesheets_are_served
1782
+ -------------------------------------------------
1783
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 20:21:51 -0500
1784
+ ---------------------------------------------------------------------------------
1785
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1786
+ ---------------------------------------------------------------------------------
1787
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-02-23 20:21:51 -0500
1788
+ -----------------------------------------------------------------------------------
1789
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_flip_the_icon_to_the_right
1790
+ -----------------------------------------------------------------------------------
1791
+ -------------------------------------------------------------------------
1792
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1793
+ -------------------------------------------------------------------------
1794
+ ----------------------------------------------------------------------------------
1795
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1796
+ ----------------------------------------------------------------------------------
1797
+ --------------------------------------------------------------------------------------------
1798
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1799
+ --------------------------------------------------------------------------------------------
1800
+ ----------------------------------------------------------------------------------
1801
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1802
+ ----------------------------------------------------------------------------------
1803
+ ---------------------------------------------------------------------------------------
1804
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1805
+ ---------------------------------------------------------------------------------------
1806
+ -----------------------------------------------------------------------------
1807
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1808
+ -----------------------------------------------------------------------------
1809
+ ------------------------------------------------------------------------------------------
1810
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1811
+ ------------------------------------------------------------------------------------------
1812
+ ------------------------------------------------------------------------------------------
1813
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1814
+ ------------------------------------------------------------------------------------------
1815
+ ---------------------------------------------------------------------------------------------
1816
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1817
+ ---------------------------------------------------------------------------------------------
1818
+ ----------------------------------------------------------------------------------------
1819
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1820
+ ----------------------------------------------------------------------------------------
1821
+ -------------------------------------------------------------------------------------------------------
1822
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1823
+ -------------------------------------------------------------------------------------------------------
1824
+ ---------------------------------------------------------------------------------
1825
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1826
+ ---------------------------------------------------------------------------------
1827
+ ----------------------------------------------------------------------------------------------------
1828
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1829
+ ----------------------------------------------------------------------------------------------------
1830
+ ------------------------------------------------------------------------------------------
1831
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1832
+ ------------------------------------------------------------------------------------------
1833
+ -----------------------------------------------------------------------------------------------
1834
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1835
+ -----------------------------------------------------------------------------------------------
1836
+ --------------------------------------------------------------------------------------
1837
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1838
+ --------------------------------------------------------------------------------------
1839
+ ----------------------------------------------------------------------------------
1840
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1841
+ ----------------------------------------------------------------------------------
1842
+ ------------------------------------------------------------------------------------------------
1843
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1844
+ ------------------------------------------------------------------------------------------------
1845
+ -------------------------------------------
1846
+ FontAwesomeRailsTest: test_engine_is_loaded
1847
+ -------------------------------------------
1848
+ -------------------------------------------
1849
+ FontAwesomeRailsTest: test_fonts_are_served
1850
+ -------------------------------------------
1851
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1852
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1853
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1854
+ ------------------------------------------------------------------
1855
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1856
+ ------------------------------------------------------------------
1857
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1858
+ Processing by PagesController#icons as HTML
1859
+ Completed 200 OK in 7ms (Views: 6.5ms)
1860
+ -----------------------------------------------------------------------------
1861
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1862
+ -----------------------------------------------------------------------------
1863
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1864
+ -------------------------------------------------------------------
1865
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1866
+ -------------------------------------------------------------------
1867
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1868
+ -------------------------------------------------------------------
1869
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1870
+ -------------------------------------------------------------------
1871
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 15:43:38 -0400
1872
+ -------------------------------------------------
1873
+ FontAwesomeRailsTest: test_stylesheets_are_served
1874
+ -------------------------------------------------
1875
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 15:43:39 -0400
1876
+ ---------------------------------------------------------------------------------
1877
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1878
+ ---------------------------------------------------------------------------------
1879
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 15:43:39 -0400
1880
+ -----------------------------------------------------------------------------------
1881
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_flip_the_icon_to_the_right
1882
+ -----------------------------------------------------------------------------------
1883
+ -------------------------------------------------------------------------
1884
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1885
+ -------------------------------------------------------------------------
1886
+ ----------------------------------------------------------------------------------
1887
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1888
+ ----------------------------------------------------------------------------------
1889
+ --------------------------------------------------------------------------------------------
1890
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1891
+ --------------------------------------------------------------------------------------------
1892
+ ----------------------------------------------------------------------------------
1893
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1894
+ ----------------------------------------------------------------------------------
1895
+ ---------------------------------------------------------------------------------------
1896
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1897
+ ---------------------------------------------------------------------------------------
1898
+ -----------------------------------------------------------------------------
1899
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1900
+ -----------------------------------------------------------------------------
1901
+ ------------------------------------------------------------------------------------------
1902
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1903
+ ------------------------------------------------------------------------------------------
1904
+ ------------------------------------------------------------------------------------------
1905
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1906
+ ------------------------------------------------------------------------------------------
1907
+ ---------------------------------------------------------------------------------------------
1908
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
1909
+ ---------------------------------------------------------------------------------------------
1910
+ ----------------------------------------------------------------------------------------
1911
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
1912
+ ----------------------------------------------------------------------------------------
1913
+ -------------------------------------------------------------------------------------------------------
1914
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
1915
+ -------------------------------------------------------------------------------------------------------
1916
+ ---------------------------------------------------------------------------------
1917
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
1918
+ ---------------------------------------------------------------------------------
1919
+ ----------------------------------------------------------------------------------------------------
1920
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
1921
+ ----------------------------------------------------------------------------------------------------
1922
+ ------------------------------------------------------------------------------------------
1923
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
1924
+ ------------------------------------------------------------------------------------------
1925
+ -----------------------------------------------------------------------------------------------
1926
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
1927
+ -----------------------------------------------------------------------------------------------
1928
+ --------------------------------------------------------------------------------------
1929
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
1930
+ --------------------------------------------------------------------------------------
1931
+ ----------------------------------------------------------------------------------
1932
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
1933
+ ----------------------------------------------------------------------------------
1934
+ ------------------------------------------------------------------------------------------------
1935
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
1936
+ ------------------------------------------------------------------------------------------------
1937
+ -------------------------------------------
1938
+ FontAwesomeRailsTest: test_engine_is_loaded
1939
+ -------------------------------------------
1940
+ -------------------------------------------
1941
+ FontAwesomeRailsTest: test_fonts_are_served
1942
+ -------------------------------------------
1943
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 15:47:21 -0400
1944
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 15:47:21 -0400
1945
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 15:47:21 -0400
1946
+ ------------------------------------------------------------------
1947
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
1948
+ ------------------------------------------------------------------
1949
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 15:47:21 -0400
1950
+ Processing by PagesController#icons as HTML
1951
+ Completed 200 OK in 4ms (Views: 4.0ms)
1952
+ -----------------------------------------------------------------------------
1953
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
1954
+ -----------------------------------------------------------------------------
1955
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 15:47:21 -0400
1956
+ -------------------------------------------------------------------
1957
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
1958
+ -------------------------------------------------------------------
1959
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 15:47:22 -0400
1960
+ -------------------------------------------------------------------
1961
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
1962
+ -------------------------------------------------------------------
1963
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 15:47:22 -0400
1964
+ -------------------------------------------------
1965
+ FontAwesomeRailsTest: test_stylesheets_are_served
1966
+ -------------------------------------------------
1967
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 15:47:22 -0400
1968
+ ---------------------------------------------------------------------------------
1969
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
1970
+ ---------------------------------------------------------------------------------
1971
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 15:47:22 -0400
1972
+ ---------------------------------------------------------------------------------------------
1973
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
1974
+ ---------------------------------------------------------------------------------------------
1975
+ -------------------------------------------------------------------------
1976
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
1977
+ -------------------------------------------------------------------------
1978
+ ----------------------------------------------------------------------------------
1979
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
1980
+ ----------------------------------------------------------------------------------
1981
+ --------------------------------------------------------------------------------------------
1982
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
1983
+ --------------------------------------------------------------------------------------------
1984
+ ----------------------------------------------------------------------------------
1985
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
1986
+ ----------------------------------------------------------------------------------
1987
+ ---------------------------------------------------------------------------------------
1988
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
1989
+ ---------------------------------------------------------------------------------------
1990
+ -----------------------------------------------------------------------------
1991
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
1992
+ -----------------------------------------------------------------------------
1993
+ ------------------------------------------------------------------------------------------
1994
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
1995
+ ------------------------------------------------------------------------------------------
1996
+ ------------------------------------------------------------------------------------------
1997
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
1998
+ ------------------------------------------------------------------------------------------
1999
+ ---------------------------------------------------------------------------------------------
2000
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2001
+ ---------------------------------------------------------------------------------------------
2002
+ ----------------------------------------------------------------------------------------
2003
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2004
+ ----------------------------------------------------------------------------------------
2005
+ -------------------------------------------------------------------------------------------------------
2006
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2007
+ -------------------------------------------------------------------------------------------------------
2008
+ ---------------------------------------------------------------------------------
2009
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2010
+ ---------------------------------------------------------------------------------
2011
+ ----------------------------------------------------------------------------------------------------
2012
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2013
+ ----------------------------------------------------------------------------------------------------
2014
+ ------------------------------------------------------------------------------------------
2015
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2016
+ ------------------------------------------------------------------------------------------
2017
+ -----------------------------------------------------------------------------------------------
2018
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2019
+ -----------------------------------------------------------------------------------------------
2020
+ --------------------------------------------------------------------------------------
2021
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2022
+ --------------------------------------------------------------------------------------
2023
+ ----------------------------------------------------------------------------------
2024
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2025
+ ----------------------------------------------------------------------------------
2026
+ ------------------------------------------------------------------------------------------------
2027
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2028
+ ------------------------------------------------------------------------------------------------
2029
+ -------------------------------------------
2030
+ FontAwesomeRailsTest: test_engine_is_loaded
2031
+ -------------------------------------------
2032
+ -------------------------------------------
2033
+ FontAwesomeRailsTest: test_fonts_are_served
2034
+ -------------------------------------------
2035
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2036
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2037
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2038
+ ------------------------------------------------------------------
2039
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2040
+ ------------------------------------------------------------------
2041
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2042
+ Processing by PagesController#icons as HTML
2043
+ Completed 200 OK in 5ms (Views: 4.8ms)
2044
+ -----------------------------------------------------------------------------
2045
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2046
+ -----------------------------------------------------------------------------
2047
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2048
+ -------------------------------------------------------------------
2049
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2050
+ -------------------------------------------------------------------
2051
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2052
+ -------------------------------------------------------------------
2053
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2054
+ -------------------------------------------------------------------
2055
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:04:32 -0400
2056
+ -------------------------------------------------
2057
+ FontAwesomeRailsTest: test_stylesheets_are_served
2058
+ -------------------------------------------------
2059
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:04:33 -0400
2060
+ ---------------------------------------------------------------------------------
2061
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2062
+ ---------------------------------------------------------------------------------
2063
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:04:33 -0400
2064
+ ---------------------------------------------------------------------------------------------
2065
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2066
+ ---------------------------------------------------------------------------------------------
2067
+ -------------------------------------------------------------------------
2068
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2069
+ -------------------------------------------------------------------------
2070
+ ----------------------------------------------------------------------------------
2071
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2072
+ ----------------------------------------------------------------------------------
2073
+ --------------------------------------------------------------------------------------------
2074
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2075
+ --------------------------------------------------------------------------------------------
2076
+ ----------------------------------------------------------------------------------
2077
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2078
+ ----------------------------------------------------------------------------------
2079
+ ---------------------------------------------------------------------------------------
2080
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2081
+ ---------------------------------------------------------------------------------------
2082
+ -----------------------------------------------------------------------------
2083
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2084
+ -----------------------------------------------------------------------------
2085
+ ------------------------------------------------------------------------------------------
2086
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2087
+ ------------------------------------------------------------------------------------------
2088
+ ------------------------------------------------------------------------------------------
2089
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2090
+ ------------------------------------------------------------------------------------------
2091
+ ---------------------------------------------------------------------------------------------
2092
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2093
+ ---------------------------------------------------------------------------------------------
2094
+ ----------------------------------------------------------------------------------------
2095
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2096
+ ----------------------------------------------------------------------------------------
2097
+ -------------------------------------------------------------------------------------------------------
2098
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2099
+ -------------------------------------------------------------------------------------------------------
2100
+ ---------------------------------------------------------------------------------
2101
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2102
+ ---------------------------------------------------------------------------------
2103
+ ----------------------------------------------------------------------------------------------------
2104
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2105
+ ----------------------------------------------------------------------------------------------------
2106
+ ------------------------------------------------------------------------------------------
2107
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2108
+ ------------------------------------------------------------------------------------------
2109
+ -----------------------------------------------------------------------------------------------
2110
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2111
+ -----------------------------------------------------------------------------------------------
2112
+ --------------------------------------------------------------------------------------
2113
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2114
+ --------------------------------------------------------------------------------------
2115
+ ----------------------------------------------------------------------------------
2116
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2117
+ ----------------------------------------------------------------------------------
2118
+ ------------------------------------------------------------------------------------------------
2119
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2120
+ ------------------------------------------------------------------------------------------------
2121
+ -------------------------------------------
2122
+ FontAwesomeRailsTest: test_engine_is_loaded
2123
+ -------------------------------------------
2124
+ -------------------------------------------
2125
+ FontAwesomeRailsTest: test_fonts_are_served
2126
+ -------------------------------------------
2127
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2128
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2129
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2130
+ ------------------------------------------------------------------
2131
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2132
+ ------------------------------------------------------------------
2133
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2134
+ Processing by PagesController#icons as HTML
2135
+ Completed 200 OK in 4ms (Views: 3.9ms)
2136
+ -----------------------------------------------------------------------------
2137
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2138
+ -----------------------------------------------------------------------------
2139
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2140
+ -------------------------------------------------------------------
2141
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2142
+ -------------------------------------------------------------------
2143
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2144
+ -------------------------------------------------------------------
2145
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2146
+ -------------------------------------------------------------------
2147
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2148
+ -------------------------------------------------
2149
+ FontAwesomeRailsTest: test_stylesheets_are_served
2150
+ -------------------------------------------------
2151
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:06:05 -0400
2152
+ ---------------------------------------------------------------------------------
2153
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2154
+ ---------------------------------------------------------------------------------
2155
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:06:06 -0400
2156
+ ---------------------------------------------------------------------------------------------
2157
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2158
+ ---------------------------------------------------------------------------------------------
2159
+ -------------------------------------------------------------------------
2160
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2161
+ -------------------------------------------------------------------------
2162
+ ----------------------------------------------------------------------------------
2163
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2164
+ ----------------------------------------------------------------------------------
2165
+ --------------------------------------------------------------------------------------------
2166
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2167
+ --------------------------------------------------------------------------------------------
2168
+ ----------------------------------------------------------------------------------
2169
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2170
+ ----------------------------------------------------------------------------------
2171
+ ---------------------------------------------------------------------------------------
2172
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2173
+ ---------------------------------------------------------------------------------------
2174
+ -----------------------------------------------------------------------------
2175
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2176
+ -----------------------------------------------------------------------------
2177
+ ------------------------------------------------------------------------------------------
2178
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2179
+ ------------------------------------------------------------------------------------------
2180
+ ------------------------------------------------------------------------------------------
2181
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2182
+ ------------------------------------------------------------------------------------------
2183
+ ---------------------------------------------------------------------------------------------
2184
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2185
+ ---------------------------------------------------------------------------------------------
2186
+ ----------------------------------------------------------------------------------------
2187
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2188
+ ----------------------------------------------------------------------------------------
2189
+ -------------------------------------------------------------------------------------------------------
2190
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2191
+ -------------------------------------------------------------------------------------------------------
2192
+ -----------------------------------------------------------------------------------------------------
2193
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
2194
+ -----------------------------------------------------------------------------------------------------
2195
+ ---------------------------------------------------------------------------------
2196
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2197
+ ---------------------------------------------------------------------------------
2198
+ ----------------------------------------------------------------------------------------------------
2199
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2200
+ ----------------------------------------------------------------------------------------------------
2201
+ ------------------------------------------------------------------------------------------
2202
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2203
+ ------------------------------------------------------------------------------------------
2204
+ -----------------------------------------------------------------------------------------------
2205
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2206
+ -----------------------------------------------------------------------------------------------
2207
+ --------------------------------------------------------------------------------------
2208
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2209
+ --------------------------------------------------------------------------------------
2210
+ ----------------------------------------------------------------------------------
2211
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2212
+ ----------------------------------------------------------------------------------
2213
+ ------------------------------------------------------------------------------------------------
2214
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2215
+ ------------------------------------------------------------------------------------------------
2216
+ -------------------------------------------
2217
+ FontAwesomeRailsTest: test_engine_is_loaded
2218
+ -------------------------------------------
2219
+ -------------------------------------------
2220
+ FontAwesomeRailsTest: test_fonts_are_served
2221
+ -------------------------------------------
2222
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2223
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2224
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2225
+ ------------------------------------------------------------------
2226
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2227
+ ------------------------------------------------------------------
2228
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2229
+ Processing by PagesController#icons as HTML
2230
+ Completed 200 OK in 4ms (Views: 4.1ms)
2231
+ -----------------------------------------------------------------------------
2232
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2233
+ -----------------------------------------------------------------------------
2234
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2235
+ -------------------------------------------------------------------
2236
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2237
+ -------------------------------------------------------------------
2238
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2239
+ -------------------------------------------------------------------
2240
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2241
+ -------------------------------------------------------------------
2242
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:16:20 -0400
2243
+ -------------------------------------------------
2244
+ FontAwesomeRailsTest: test_stylesheets_are_served
2245
+ -------------------------------------------------
2246
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:16:21 -0400
2247
+ ---------------------------------------------------------------------------------
2248
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2249
+ ---------------------------------------------------------------------------------
2250
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:16:21 -0400
2251
+ ---------------------------------------------------------------------------------------------
2252
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2253
+ ---------------------------------------------------------------------------------------------
2254
+ -------------------------------------------------------------------------
2255
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2256
+ -------------------------------------------------------------------------
2257
+ ----------------------------------------------------------------------------------
2258
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2259
+ ----------------------------------------------------------------------------------
2260
+ --------------------------------------------------------------------------------------------
2261
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2262
+ --------------------------------------------------------------------------------------------
2263
+ ----------------------------------------------------------------------------------
2264
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2265
+ ----------------------------------------------------------------------------------
2266
+ ---------------------------------------------------------------------------------------
2267
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2268
+ ---------------------------------------------------------------------------------------
2269
+ -----------------------------------------------------------------------------
2270
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2271
+ -----------------------------------------------------------------------------
2272
+ ------------------------------------------------------------------------------------------
2273
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2274
+ ------------------------------------------------------------------------------------------
2275
+ ------------------------------------------------------------------------------------------
2276
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2277
+ ------------------------------------------------------------------------------------------
2278
+ ---------------------------------------------------------------------------------------------
2279
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2280
+ ---------------------------------------------------------------------------------------------
2281
+ ----------------------------------------------------------------------------------------
2282
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2283
+ ----------------------------------------------------------------------------------------
2284
+ -------------------------------------------------------------------------------------------------------
2285
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2286
+ -------------------------------------------------------------------------------------------------------
2287
+ -----------------------------------------------------------------------------------------------------
2288
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
2289
+ -----------------------------------------------------------------------------------------------------
2290
+ ---------------------------------------------------------------------------------
2291
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2292
+ ---------------------------------------------------------------------------------
2293
+ ----------------------------------------------------------------------------------------------------
2294
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2295
+ ----------------------------------------------------------------------------------------------------
2296
+ ------------------------------------------------------------------------------------------
2297
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2298
+ ------------------------------------------------------------------------------------------
2299
+ -----------------------------------------------------------------------------------------------
2300
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2301
+ -----------------------------------------------------------------------------------------------
2302
+ --------------------------------------------------------------------------------------
2303
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2304
+ --------------------------------------------------------------------------------------
2305
+ ----------------------------------------------------------------------------------
2306
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2307
+ ----------------------------------------------------------------------------------
2308
+ ------------------------------------------------------------------------------------------------
2309
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2310
+ ------------------------------------------------------------------------------------------------
2311
+ -------------------------------------------
2312
+ FontAwesomeRailsTest: test_engine_is_loaded
2313
+ -------------------------------------------
2314
+ -------------------------------------------
2315
+ FontAwesomeRailsTest: test_fonts_are_served
2316
+ -------------------------------------------
2317
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:16:37 -0400
2318
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:16:37 -0400
2319
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:16:37 -0400
2320
+ ------------------------------------------------------------------
2321
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2322
+ ------------------------------------------------------------------
2323
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:16:37 -0400
2324
+ Processing by PagesController#icons as HTML
2325
+ Completed 200 OK in 4ms (Views: 4.2ms)
2326
+ -----------------------------------------------------------------------------
2327
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2328
+ -----------------------------------------------------------------------------
2329
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:16:37 -0400
2330
+ -------------------------------------------------------------------
2331
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2332
+ -------------------------------------------------------------------
2333
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:16:38 -0400
2334
+ -------------------------------------------------------------------
2335
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2336
+ -------------------------------------------------------------------
2337
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:16:38 -0400
2338
+ -------------------------------------------------
2339
+ FontAwesomeRailsTest: test_stylesheets_are_served
2340
+ -------------------------------------------------
2341
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:16:38 -0400
2342
+ ---------------------------------------------------------------------------------
2343
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2344
+ ---------------------------------------------------------------------------------
2345
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:16:38 -0400
2346
+ ---------------------------------------------------------------------------------------------
2347
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2348
+ ---------------------------------------------------------------------------------------------
2349
+ -------------------------------------------------------------------------
2350
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2351
+ -------------------------------------------------------------------------
2352
+ ----------------------------------------------------------------------------------
2353
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2354
+ ----------------------------------------------------------------------------------
2355
+ --------------------------------------------------------------------------------------------
2356
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2357
+ --------------------------------------------------------------------------------------------
2358
+ ----------------------------------------------------------------------------------
2359
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2360
+ ----------------------------------------------------------------------------------
2361
+ ---------------------------------------------------------------------------------------
2362
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2363
+ ---------------------------------------------------------------------------------------
2364
+ -----------------------------------------------------------------------------
2365
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2366
+ -----------------------------------------------------------------------------
2367
+ ------------------------------------------------------------------------------------------
2368
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2369
+ ------------------------------------------------------------------------------------------
2370
+ ------------------------------------------------------------------------------------------
2371
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2372
+ ------------------------------------------------------------------------------------------
2373
+ ---------------------------------------------------------------------------------------------
2374
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2375
+ ---------------------------------------------------------------------------------------------
2376
+ ----------------------------------------------------------------------------------------
2377
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2378
+ ----------------------------------------------------------------------------------------
2379
+ -------------------------------------------------------------------------------------------------------
2380
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2381
+ -------------------------------------------------------------------------------------------------------
2382
+ -----------------------------------------------------------------------------------------------------
2383
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
2384
+ -----------------------------------------------------------------------------------------------------
2385
+ ---------------------------------------------------------------------------------
2386
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2387
+ ---------------------------------------------------------------------------------
2388
+ ----------------------------------------------------------------------------------------------------
2389
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2390
+ ----------------------------------------------------------------------------------------------------
2391
+ ------------------------------------------------------------------------------------------
2392
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2393
+ ------------------------------------------------------------------------------------------
2394
+ -----------------------------------------------------------------------------------------------
2395
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2396
+ -----------------------------------------------------------------------------------------------
2397
+ --------------------------------------------------------------------------------------
2398
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2399
+ --------------------------------------------------------------------------------------
2400
+ ----------------------------------------------------------------------------------
2401
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2402
+ ----------------------------------------------------------------------------------
2403
+ ------------------------------------------------------------------------------------------------
2404
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2405
+ ------------------------------------------------------------------------------------------------
2406
+ -------------------------------------------
2407
+ FontAwesomeRailsTest: test_engine_is_loaded
2408
+ -------------------------------------------
2409
+ -------------------------------------------
2410
+ FontAwesomeRailsTest: test_fonts_are_served
2411
+ -------------------------------------------
2412
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2413
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2414
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2415
+ ------------------------------------------------------------------
2416
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2417
+ ------------------------------------------------------------------
2418
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2419
+ Processing by PagesController#icons as HTML
2420
+ Completed 200 OK in 4ms (Views: 4.2ms)
2421
+ -----------------------------------------------------------------------------
2422
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2423
+ -----------------------------------------------------------------------------
2424
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2425
+ -------------------------------------------------------------------
2426
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2427
+ -------------------------------------------------------------------
2428
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:17:07 -0400
2429
+ -------------------------------------------------------------------
2430
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2431
+ -------------------------------------------------------------------
2432
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:17:08 -0400
2433
+ -------------------------------------------------
2434
+ FontAwesomeRailsTest: test_stylesheets_are_served
2435
+ -------------------------------------------------
2436
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:17:08 -0400
2437
+ ---------------------------------------------------------------------------------
2438
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2439
+ ---------------------------------------------------------------------------------
2440
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:17:08 -0400
2441
+ ---------------------------------------------------------------------------------------------
2442
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2443
+ ---------------------------------------------------------------------------------------------
2444
+ -------------------------------------------------------------------------
2445
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2446
+ -------------------------------------------------------------------------
2447
+ ----------------------------------------------------------------------------------
2448
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2449
+ ----------------------------------------------------------------------------------
2450
+ --------------------------------------------------------------------------------------------
2451
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2452
+ --------------------------------------------------------------------------------------------
2453
+ ----------------------------------------------------------------------------------
2454
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2455
+ ----------------------------------------------------------------------------------
2456
+ ---------------------------------------------------------------------------------------
2457
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2458
+ ---------------------------------------------------------------------------------------
2459
+ -----------------------------------------------------------------------------
2460
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2461
+ -----------------------------------------------------------------------------
2462
+ ------------------------------------------------------------------------------------------
2463
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2464
+ ------------------------------------------------------------------------------------------
2465
+ ------------------------------------------------------------------------------------------
2466
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2467
+ ------------------------------------------------------------------------------------------
2468
+ ---------------------------------------------------------------------------------------------
2469
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2470
+ ---------------------------------------------------------------------------------------------
2471
+ ----------------------------------------------------------------------------------------
2472
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2473
+ ----------------------------------------------------------------------------------------
2474
+ -------------------------------------------------------------------------------------------------------
2475
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2476
+ -------------------------------------------------------------------------------------------------------
2477
+ -----------------------------------------------------------------------------------------------------
2478
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
2479
+ -----------------------------------------------------------------------------------------------------
2480
+ ---------------------------------------------------------------------------------
2481
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2482
+ ---------------------------------------------------------------------------------
2483
+ ----------------------------------------------------------------------------------------------------
2484
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2485
+ ----------------------------------------------------------------------------------------------------
2486
+ ------------------------------------------------------------------------------------------
2487
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2488
+ ------------------------------------------------------------------------------------------
2489
+ -----------------------------------------------------------------------------------------------
2490
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2491
+ -----------------------------------------------------------------------------------------------
2492
+ --------------------------------------------------------------------------------------
2493
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2494
+ --------------------------------------------------------------------------------------
2495
+ ----------------------------------------------------------------------------------
2496
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2497
+ ----------------------------------------------------------------------------------
2498
+ ------------------------------------------------------------------------------------------------
2499
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2500
+ ------------------------------------------------------------------------------------------------
2501
+ -------------------------------------------
2502
+ FontAwesomeRailsTest: test_engine_is_loaded
2503
+ -------------------------------------------
2504
+ -------------------------------------------
2505
+ FontAwesomeRailsTest: test_fonts_are_served
2506
+ -------------------------------------------
2507
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2508
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2509
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2510
+ ------------------------------------------------------------------
2511
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2512
+ ------------------------------------------------------------------
2513
+ Started GET "/icons" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2514
+ Processing by PagesController#icons as HTML
2515
+ Completed 200 OK in 4ms (Views: 4.2ms)
2516
+ -----------------------------------------------------------------------------
2517
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2518
+ -----------------------------------------------------------------------------
2519
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2520
+ -------------------------------------------------------------------
2521
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2522
+ -------------------------------------------------------------------
2523
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-04-25 16:22:06 -0400
2524
+ -------------------------------------------------------------------
2525
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
2526
+ -------------------------------------------------------------------
2527
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-04-25 16:22:07 -0400
2528
+ -------------------------------------------------
2529
+ FontAwesomeRailsTest: test_stylesheets_are_served
2530
+ -------------------------------------------------
2531
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:22:07 -0400
2532
+ ---------------------------------------------------------------------------------
2533
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2534
+ ---------------------------------------------------------------------------------
2535
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-04-25 16:22:07 -0400