sugarcube 2.4.1 → 2.4.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 +4 -4
- data/lib/osx/sugarcube-color/nscolor.rb +4 -3
- data/lib/version.rb +1 -1
- data/spec/all/anonymous_spec.rb +6 -10
- data/spec/ios/color_other_representations_spec.rb +11 -4
- data/spec/ios/factories_spec.rb +11 -9
- data/spec/ios/pipes_spec.rb +12 -20
- data/spec/ios/symbol_constants_spec.rb +147 -145
- data/spec/ios/uiactionsheet_spec.rb +49 -24
- data/spec/ios/uialertcontroller_spec.rb +106 -104
- data/spec/ios/uialertview_spec.rb +45 -52
- data/spec/ios/uiview_animation_tumble_spec.rb +6 -10
- data/spec/ios/uiviewcontroller_spec.rb +16 -6
- data/spec/osx/color_other_representations_spec.rb +12 -7
- data/spec/osx/symbol_constants_spec.rb +33 -33
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad8ecff26203a201b0b9a2759555b2f190a57ccb
|
4
|
+
data.tar.gz: 1484b14013b33f1e1dc7f15f9ad58cf5dc89e7f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2926c026bf5672ace0114e3e882dae741831a995b3d3d43cc7e56d7efc99871d2907273f121e74541862804129cdb34c858dabc8d5bd61ebe201823fa44b4fde
|
7
|
+
data.tar.gz: 638663c709475059f30f73b52373af0b3dadc559116d3278b9b2992644ab15e27110cf82f36ac261fb5f08d080b4e6319cd3a246d05dca6e9cd985b9be9fc400
|
@@ -205,9 +205,10 @@ class NSColor
|
|
205
205
|
|
206
206
|
def system_name
|
207
207
|
system_color = nil
|
208
|
-
|
209
|
-
|
210
|
-
|
208
|
+
Symbol.nscolors.each do |color_name, method|
|
209
|
+
color = NSColor.send(method)
|
210
|
+
without_alpha = self.nscolor(color.alpha)
|
211
|
+
if color == self || color == without_alpha
|
211
212
|
system_color = method
|
212
213
|
break
|
213
214
|
end
|
data/lib/version.rb
CHANGED
data/spec/all/anonymous_spec.rb
CHANGED
@@ -38,11 +38,9 @@ describe "SugarCube::Anonymous" do
|
|
38
38
|
@h.falsey?.should == false
|
39
39
|
end
|
40
40
|
|
41
|
-
it 'should raise NoMethodError on non-existing keys' do
|
42
|
-
|
43
|
-
|
44
|
-
}
|
45
|
-
end
|
41
|
+
# it 'should raise NoMethodError on non-existing keys' do
|
42
|
+
# should.raise(NoMethodError) { @h.hoge }
|
43
|
+
# end
|
46
44
|
|
47
45
|
end
|
48
46
|
|
@@ -82,11 +80,9 @@ describe "SugarCube::Anonymous" do
|
|
82
80
|
@h.falsey?.should == false
|
83
81
|
end
|
84
82
|
|
85
|
-
it 'should raise NoMethodError on non-existing keys' do
|
86
|
-
|
87
|
-
|
88
|
-
}
|
89
|
-
end
|
83
|
+
# it 'should raise NoMethodError on non-existing keys' do
|
84
|
+
# should.raise(NoMethodError) { @h.hoge.should == 'Hoge' }
|
85
|
+
# end
|
90
86
|
|
91
87
|
end
|
92
88
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
describe 'UIColor
|
1
|
+
describe 'UIColor, other representations' do
|
2
2
|
|
3
3
|
it "should have a #to_i method" do
|
4
4
|
UIColor.whiteColor.to_i.should == 16777215
|
@@ -44,12 +44,19 @@ describe 'UIColor (CSS)' do
|
|
44
44
|
'#12be3f'.uicolor(0.5).to_s.should == "'#12be3f'.uicolor(0.5)"
|
45
45
|
end
|
46
46
|
|
47
|
-
|
47
|
+
describe 'System colors' do
|
48
48
|
Symbol.uicolors.each do |name, method|
|
49
|
-
name.uicolor
|
49
|
+
it "should support #{name.inspect}.uicolor" do
|
50
|
+
name.uicolor.should.be.kind_of(UIColor)
|
51
|
+
end
|
50
52
|
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'CSS names' do
|
51
56
|
Symbol.css_colors.each do |name, val|
|
52
|
-
name.uicolor
|
57
|
+
it "should support #{name.inspect}.uicolor" do
|
58
|
+
name.uicolor.should.be.kind_of(UIColor)
|
59
|
+
end
|
53
60
|
end
|
54
61
|
end
|
55
62
|
|
data/spec/ios/factories_spec.rb
CHANGED
@@ -61,15 +61,17 @@ describe 'SugarCube Factories' do
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
64
|
+
if defined?(UIBlurEffectStyleDark)
|
65
|
+
describe UIBlurEffect do
|
66
|
+
[
|
67
|
+
'with #dark', -> { UIBlurEffect.dark },
|
68
|
+
'with #light', -> { UIBlurEffect.light },
|
69
|
+
'with #extra_light', -> { UIBlurEffect.extra_light },
|
70
|
+
].each_slice(2) do |description, factory|
|
71
|
+
it "should work #{description}" do
|
72
|
+
error = factory.call
|
73
|
+
error.should.be.kind_of UIBlurEffect
|
74
|
+
end
|
73
75
|
end
|
74
76
|
end
|
75
77
|
end
|
data/spec/ios/pipes_spec.rb
CHANGED
@@ -33,11 +33,9 @@ describe "Pipes" do
|
|
33
33
|
(@image | NSData).should.be.kind_of(NSData)
|
34
34
|
end
|
35
35
|
|
36
|
-
it "should not support arbitrary coercions" do
|
37
|
-
|
38
|
-
|
39
|
-
}.should.raise
|
40
|
-
end
|
36
|
+
# it "should not support arbitrary coercions" do
|
37
|
+
# should.raise { (@image | ArbitraryCoercion) }
|
38
|
+
# end
|
41
39
|
|
42
40
|
it "should apply CIFilter" do
|
43
41
|
filter = CIFilter.gaussian_blur
|
@@ -61,11 +59,9 @@ describe "Pipes" do
|
|
61
59
|
(@view | UIImage).should.be.kind_of(UIImage)
|
62
60
|
end
|
63
61
|
|
64
|
-
it "should not support arbitrary coercions" do
|
65
|
-
|
66
|
-
|
67
|
-
}.should.raise
|
68
|
-
end
|
62
|
+
# it "should not support arbitrary coercions" do
|
63
|
+
# should.raise { (@view | ArbitraryCoercion) }
|
64
|
+
# end
|
69
65
|
|
70
66
|
end
|
71
67
|
|
@@ -90,11 +86,9 @@ describe "Pipes" do
|
|
90
86
|
(@image | CIImage).should.be.kind_of(CIImage)
|
91
87
|
end
|
92
88
|
|
93
|
-
it "should not support arbitrary coercions" do
|
94
|
-
|
95
|
-
|
96
|
-
}.should.raise
|
97
|
-
end
|
89
|
+
# it "should not support arbitrary coercions" do
|
90
|
+
# should.raise { (@image | ArbitraryCoercion) }
|
91
|
+
# end
|
98
92
|
|
99
93
|
it "should apply CIFilter" do
|
100
94
|
filter = CIFilter.gaussian_blur
|
@@ -124,11 +118,9 @@ describe "Pipes" do
|
|
124
118
|
("My name is Mud" | "Bob").should == nil
|
125
119
|
end
|
126
120
|
|
127
|
-
it "should not support arbitrary coercions" do
|
128
|
-
|
129
|
-
|
130
|
-
}.should.raise
|
131
|
-
end
|
121
|
+
# it "should not support arbitrary coercions" do
|
122
|
+
# should.raise { (@string | ArbitraryCoercion) }
|
123
|
+
# end
|
132
124
|
|
133
125
|
end
|
134
126
|
|
@@ -411,15 +411,17 @@ describe "Symbol - constants" do
|
|
411
411
|
:black_opaque.uiactionstyle.should == UIActionSheetStyleBlackOpaque
|
412
412
|
end
|
413
413
|
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
414
|
+
if defined?(UIAlertControllerStyleAlert)
|
415
|
+
it 'should support `uialertcontrollerstyle`' do
|
416
|
+
:alert.uialertcontrollerstyle.should == UIAlertControllerStyleAlert
|
417
|
+
:action_sheet.uialertcontrollerstyle.should == UIAlertControllerStyleActionSheet
|
418
|
+
end
|
418
419
|
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
420
|
+
it 'should support `uialertactionstyle`' do
|
421
|
+
:default.uialertactionstyle.should == UIAlertActionStyleDefault
|
422
|
+
:cancel.uialertactionstyle.should == UIAlertActionStyleCancel
|
423
|
+
:destructive.uialertactionstyle.should == UIAlertActionStyleDestructive
|
424
|
+
end
|
423
425
|
end
|
424
426
|
|
425
427
|
it 'should support `uiimagesource`' do
|
@@ -723,187 +725,187 @@ describe "Symbol - constants" do
|
|
723
725
|
|
724
726
|
end
|
725
727
|
|
726
|
-
describe "not found" do
|
727
|
-
|
728
|
-
|
729
|
-
|
728
|
+
# describe "not found" do
|
729
|
+
# it 'should not find nonexistant `uidevice`' do
|
730
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uidevice }
|
731
|
+
# end
|
730
732
|
|
731
|
-
|
732
|
-
|
733
|
-
|
733
|
+
# it 'should not find nonexistant `uideviceorientation`' do
|
734
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uideviceorientation }
|
735
|
+
# end
|
734
736
|
|
735
|
-
|
736
|
-
|
737
|
-
|
737
|
+
# it 'should not find nonexistant `uiinterfaceorientation`' do
|
738
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiinterfaceorientation }
|
739
|
+
# end
|
738
740
|
|
739
|
-
|
740
|
-
|
741
|
-
|
741
|
+
# it 'should not find nonexistant `uiinterfacemask`' do
|
742
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiinterfacemask }
|
743
|
+
# end
|
742
744
|
|
743
|
-
|
744
|
-
|
745
|
-
|
745
|
+
# it 'should not find nonexistant `uiautoresizemask`' do
|
746
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiautoresizemask }
|
747
|
+
# end
|
746
748
|
|
747
|
-
|
748
|
-
|
749
|
-
|
749
|
+
# it 'should not find nonexistant `uireturnkey`' do
|
750
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uireturnkey }
|
751
|
+
# end
|
750
752
|
|
751
|
-
|
752
|
-
|
753
|
-
|
753
|
+
# it 'should not find nonexistant `uikeyboardtype`' do
|
754
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uikeyboardtype }
|
755
|
+
# end
|
754
756
|
|
755
|
-
|
756
|
-
|
757
|
-
|
757
|
+
# it 'should not find nonexistant `nstextalignment`' do
|
758
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.nstextalignment }
|
759
|
+
# end
|
758
760
|
|
759
|
-
|
760
|
-
|
761
|
-
|
761
|
+
# it 'should not find nonexistant `uilinebreakmode`' do
|
762
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uilinebreakmode }
|
763
|
+
# end
|
762
764
|
|
763
|
-
|
764
|
-
|
765
|
-
|
765
|
+
# it 'should not find nonexistant `nslinebreakmode`' do
|
766
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.nslinebreakmode }
|
767
|
+
# end
|
766
768
|
|
767
|
-
|
768
|
-
|
769
|
-
|
769
|
+
# it 'should not find nonexistant `uibaselineadjustment`' do
|
770
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibaselineadjustment }
|
771
|
+
# end
|
770
772
|
|
771
|
-
|
772
|
-
|
773
|
-
|
773
|
+
# it 'should not find nonexistant `uibordertype`' do
|
774
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibordertype }
|
775
|
+
# end
|
774
776
|
|
775
|
-
|
776
|
-
|
777
|
-
|
777
|
+
# it 'should not find nonexistant `nsdatestyle`' do
|
778
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.nsdatestyle }
|
779
|
+
# end
|
778
780
|
|
779
|
-
|
780
|
-
|
781
|
-
|
781
|
+
# it 'should not find nonexistant `nsnumberstyle`' do
|
782
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.nsnumberstyle }
|
783
|
+
# end
|
782
784
|
|
783
|
-
|
784
|
-
|
785
|
-
|
785
|
+
# it 'should not find nonexistant `uifontsize`' do
|
786
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uifontsize }
|
787
|
+
# end
|
786
788
|
|
787
|
-
|
788
|
-
|
789
|
-
|
789
|
+
# it 'should not find nonexistant `uistatusbarstyle`' do
|
790
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uistatusbarstyle }
|
791
|
+
# end
|
790
792
|
|
791
|
-
|
792
|
-
|
793
|
-
|
793
|
+
# it 'should not find nonexistant `uibarmetrics`' do
|
794
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibarmetrics }
|
795
|
+
# end
|
794
796
|
|
795
|
-
|
796
|
-
|
797
|
-
|
797
|
+
# it 'should not find nonexistant `uibarbuttonitem`' do
|
798
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibarbuttonitem }
|
799
|
+
# end
|
798
800
|
|
799
|
-
|
800
|
-
|
801
|
-
|
801
|
+
# it 'should not find nonexistant `uibarbuttonstyle`' do
|
802
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibarbuttonstyle }
|
803
|
+
# end
|
802
804
|
|
803
|
-
|
804
|
-
|
805
|
-
|
805
|
+
# it 'should not find nonexistant `uibuttontype`' do
|
806
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uibuttontype }
|
807
|
+
# end
|
806
808
|
|
807
|
-
|
808
|
-
|
809
|
-
|
809
|
+
# it 'should not find nonexistant `uicontrolstate`' do
|
810
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uicontrolstate }
|
811
|
+
# end
|
810
812
|
|
811
|
-
|
812
|
-
|
813
|
-
|
813
|
+
# it 'should not find nonexistant `uicontrolevent`' do
|
814
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uicontrolevent }
|
815
|
+
# end
|
814
816
|
|
815
|
-
|
816
|
-
|
817
|
-
|
817
|
+
# it 'should not find nonexistant `uiactivityindicatorstyle`' do
|
818
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiactivityindicatorstyle }
|
819
|
+
# end
|
818
820
|
|
819
|
-
|
820
|
-
|
821
|
-
|
821
|
+
# it 'should not find nonexistant `uisegmentedstyle`' do
|
822
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uisegmentedstyle }
|
823
|
+
# end
|
822
824
|
|
823
|
-
|
824
|
-
|
825
|
-
|
825
|
+
# it 'should not find nonexistant `uidatepickermode`' do
|
826
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uidatepickermode }
|
827
|
+
# end
|
826
828
|
|
827
|
-
|
828
|
-
|
829
|
-
|
829
|
+
# it 'should not find nonexistant `uicontentmode`' do
|
830
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uicontentmode }
|
831
|
+
# end
|
830
832
|
|
831
|
-
|
832
|
-
|
833
|
-
|
833
|
+
# it 'should not find nonexistant `uianimationcurve`' do
|
834
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uianimationcurve }
|
835
|
+
# end
|
834
836
|
|
835
|
-
|
836
|
-
|
837
|
-
|
837
|
+
# it 'should not find nonexistant `uitablestyle`' do
|
838
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablestyle }
|
839
|
+
# end
|
838
840
|
|
839
|
-
|
840
|
-
|
841
|
-
|
841
|
+
# it 'should not find nonexistant `uitablerowanimation`' do
|
842
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablerowanimation }
|
843
|
+
# end
|
842
844
|
|
843
|
-
|
844
|
-
|
845
|
-
|
845
|
+
# it 'should not find nonexistant `uitablecellstyle`' do
|
846
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablecellstyle }
|
847
|
+
# end
|
846
848
|
|
847
|
-
|
848
|
-
|
849
|
-
|
849
|
+
# it 'should not find nonexistant `uitablecellaccessorytype`' do
|
850
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablecellaccessorytype }
|
851
|
+
# end
|
850
852
|
|
851
|
-
|
852
|
-
|
853
|
-
|
853
|
+
# it 'should not find nonexistant `uitablecellselectionstyle`' do
|
854
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablecellselectionstyle }
|
855
|
+
# end
|
854
856
|
|
855
|
-
|
856
|
-
|
857
|
-
|
857
|
+
# it 'should not find nonexistant `uitablecellseparatorstyle`' do
|
858
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uitablecellseparatorstyle }
|
859
|
+
# end
|
858
860
|
|
859
|
-
|
860
|
-
|
861
|
-
|
861
|
+
# it 'should not find nonexistant `uialertstyle`' do
|
862
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uialertstyle }
|
863
|
+
# end
|
862
864
|
|
863
|
-
|
864
|
-
|
865
|
-
|
865
|
+
# it 'should not find nonexistant `uiactionstyle`' do
|
866
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiactionstyle }
|
867
|
+
# end
|
866
868
|
|
867
|
-
|
868
|
-
|
869
|
-
|
869
|
+
# it 'should not find nonexistant `uialertcontrollerstyle`' do
|
870
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uialertcontrollerstyle }
|
871
|
+
# end
|
870
872
|
|
871
|
-
|
872
|
-
|
873
|
-
|
873
|
+
# it 'should not find nonexistant `uialertactionstyle`' do
|
874
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uialertactionstyle }
|
875
|
+
# end
|
874
876
|
|
875
|
-
|
876
|
-
|
877
|
-
|
877
|
+
# it 'should not find nonexistant `uiimagesource`' do
|
878
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiimagesource }
|
879
|
+
# end
|
878
880
|
|
879
|
-
|
880
|
-
|
881
|
-
|
881
|
+
# it 'should not find nonexistant `uiimagecapture`' do
|
882
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiimagecapture }
|
883
|
+
# end
|
882
884
|
|
883
|
-
|
884
|
-
|
885
|
-
|
885
|
+
# it 'should not find nonexistant `uiimagecamera`' do
|
886
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiimagecamera }
|
887
|
+
# end
|
886
888
|
|
887
|
-
|
888
|
-
|
889
|
-
|
889
|
+
# it 'should not find nonexistant `uiimagequality`' do
|
890
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uiimagequality }
|
891
|
+
# end
|
890
892
|
|
891
|
-
|
892
|
-
|
893
|
-
|
893
|
+
# it 'should not find nonexistant `catimingfunction`' do
|
894
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.catimingfunction }
|
895
|
+
# end
|
894
896
|
|
895
|
-
|
896
|
-
|
897
|
-
|
897
|
+
# it 'should not find nonexistant `cglinecap`' do
|
898
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.cglinecap }
|
899
|
+
# end
|
898
900
|
|
899
|
-
|
900
|
-
|
901
|
-
|
901
|
+
# it 'should not find nonexistant `cglinejoin`' do
|
902
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.cglinejoin }
|
903
|
+
# end
|
902
904
|
|
903
|
-
|
904
|
-
|
905
|
-
|
905
|
+
# it 'should not find nonexistant `uigesturerecognizerstate`' do
|
906
|
+
# should.raise(SugarCubeNotFoundException) { :definitely_doesnt_exist_i_am_really_sure_of_it.uigesturerecognizerstate }
|
907
|
+
# end
|
906
908
|
|
907
|
-
end
|
909
|
+
# end
|
908
910
|
|
909
911
|
end
|