Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chaining_spec.lua « spec - github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 065491a45d4f64ff8f730b50167314bfec54bb52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'luacov'
local _ = require 'moses'

context('Chaining specs', function()

   context('chain', function()
  
    test('Chains a value',function()
      local v = _.chain({1,2,3,4})
        :filter(function(i,k) return k%2~=0 end)
        :max()
        :value()
      assert_equal(v, 3)
    end)
    
    test('_(value) is the same as _.chain(value)', function()
      local v = _({1,2,3,4})
        :filter(function(i,k) return k%2~=0 end)
        :max()
        :value()
      assert_equal(v, 3)    
    end)
    
  end) 
  
   context('value', function()
  
    test('Unwraps a chained object',function()
      local t = {1,2,3}
      assert_equal(_.chain(t):value(), t)
      assert_equal(_(t):value(), t)
    end)
    
  end)   

end)