ander 1.0.10 → 1.0.11
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 +8 -8
- data/lib/ander.rb +3 -0
- data/lib/sample_spec.rb +31 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjcwNDhhMGRkMjcyMjA3NDk2MGNhMDY2NThjMmQ0ZmMyOWNlZTk1MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjY4NmZhNjRhZDQzOTAzMDY1ZDViNWJmOWJlNDgxNjVkZDU1YzUwYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjU1Nzg1ZGFjOGE2ZWE1MzY3MmFjMjE3N2M4ZDRmZmQwZjk4MmZhZjIxNTI5
|
10
|
+
YThkNmFjOGI1NDJiMGQyNmI5Y2RhNTM5ZDY3NTY1Y2ZhZmVlNjVhODgxM2Rm
|
11
|
+
N2E4NzRlNzk0YjgyZGUyNTVmMWJlODM0YTFjNGExZDgwM2JjZTE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGEzY2EyY2I1MmYwMWI5YmE5NDg2ZDk4ZWY0OGNkNGIxMTk0ZTc1YTg0YjQ4
|
14
|
+
OTY2YTlhMGY0YmZhZTIzNzRjYmYyZDQ3MTMzMjY4MWExYWViNTdmNWZmM2Q0
|
15
|
+
NDE4NDUyMmM1ZWUzY2MwYzM1ZWFhOWM5YTk1N2JiYTIxNTQ3NmE=
|
data/lib/ander.rb
CHANGED
data/lib/sample_spec.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Target Object' do
|
4
|
+
|
5
|
+
before(:all) do
|
6
|
+
# 'This gets executed before all test cases in current script'
|
7
|
+
end
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
# 'This gets executed before each test cases in current script'
|
11
|
+
end
|
12
|
+
|
13
|
+
after(:all) do
|
14
|
+
# 'This gets executed after all test cases in current script'
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:each) do
|
18
|
+
# 'This gets executed after each test cases in current script'
|
19
|
+
end
|
20
|
+
|
21
|
+
describe 'Title of test case:' do
|
22
|
+
context 'Context of your test case' do
|
23
|
+
let(:x) {
|
24
|
+
x = 'This gets executed upon calling for x'
|
25
|
+
}
|
26
|
+
it 'Expected result of your test case' do
|
27
|
+
expect(x).to eq('This gets executed upon calling for x')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ander
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derwin Devera, Andy Juram Lee
|
@@ -19,6 +19,7 @@ extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
21
|
- lib/ander.rb
|
22
|
+
- lib/sample_spec.rb
|
22
23
|
homepage: http://rubygems.org/gems/ander
|
23
24
|
licenses:
|
24
25
|
- ''
|