diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2023-11-19 12:14:21 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2023-11-19 12:14:21 +0100 | 
| commit | 6829aa96f06ee2fc3eb20cb124611827928d16a3 (patch) | |
| tree | 951ff5209f0aa8fa920347adbd24c41e3858c28e /spec/forces_spec.rb | |
| parent | f3779466615840bbe5a77d5ff18cf9c3b70b8658 (diff) | |
| download | colonial-twilight-6829aa96f06ee2fc3eb20cb124611827928d16a3.zip colonial-twilight-6829aa96f06ee2fc3eb20cb124611827928d16a3.tar.gz  | |
Spaces/Forces : add #activate(num) && specs
Diffstat (limited to 'spec/forces_spec.rb')
| -rw-r--r-- | spec/forces_spec.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/forces_spec.rb b/spec/forces_spec.rb index ce6316f..110139e 100644 --- a/spec/forces_spec.rb +++ b/spec/forces_spec.rb @@ -132,6 +132,14 @@ describe ColonialTwilight::Forces do        expect { @f.add :wrong, 1 }.to raise_error(Exception)      end +    it 'activate raise' do +      expect { @f.activate(7) }.to raise_error(Exception) +    end + +    it 'activate' do +      expect(@f.activate(6)).to eq 13 +    end +      it 'data' do        d = @f.data        @data.keys do |k, v|  | 
