asana-ruby 0.0.3 → 0.0.4
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/asana/version.rb +1 -1
- data/spec/asana/resources/workspace_spec.rb +4 -0
- 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: 29f6688a6c27e9c8ebe927dba4e1acf2d3a2a050
|
4
|
+
data.tar.gz: aad8caec29d44ee220362b8cc32f4285a53424c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8d97369feb2322b2e9befbe4459c7cf8f3768adcdc8ffb63e2a510c295bda467b813ace05ee121beb28b0f14c514306257a6d3687b0a147d75bacb04fafd0e1
|
7
|
+
data.tar.gz: 0903183f8307a7a4cfbabc59ef46402255224ab6695c0e5ea54e706ac757827cf81c0aa51dc83ab99c7202f9adb8aa6dc39bb328f4ced47d697af0aa7e7d0fdb
|
data/lib/asana/version.rb
CHANGED
@@ -80,6 +80,10 @@ module Asana
|
|
80
80
|
expect(workspace.tags.size).to be > 0 # it'd be meaningless to compare if there are no tags
|
81
81
|
expect(workspace.tags).to eq workspace.tags(true)
|
82
82
|
end
|
83
|
+
|
84
|
+
it "should return the same tags as load_tags_by_id", focus: true do
|
85
|
+
expect(workspace.tags).to eq workspace.load_tags_by_id
|
86
|
+
end
|
83
87
|
end
|
84
88
|
|
85
89
|
describe ".find_or_create_tag" do
|