sad_panda 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe EmotionBank do
4
-
5
- let(:output) {EmotionBank.get_term_emotions}
6
-
7
- describe "when EmotionBank module is called" do
8
- it 'returns a hash' do
9
- expect(output.class).to eql(Hash)
10
- end
11
-
12
- it "is non-empty" do
13
- expect(output).to_not be_empty
14
- end
15
- end
16
- end
@@ -1,16 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe TermPolarities do
4
- describe "when TermPolarities module is called" do
5
-
6
- let(:output) {TermPolarities.get_term_polarities}
7
-
8
- it "returns a hash" do
9
- expect(output.class).to eql(Hash)
10
- end
11
-
12
- it "is non empty" do
13
- expect(output).to_not be_empty
14
- end
15
- end
16
- end