sad_panda 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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