summaryrefslogtreecommitdiffstats
path: root/spec/edje_spec.rb
blob: 79bab216ee9968b50578f7f03158690fec3d6f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'e17/edje'
#
describe E17::EDJE do
    #
    include E17
    #
    it "should init" do
        EDJE.init.should eql 1
        EDJE.init.should eql 2
        EDJE.init.should eql 3
    end
    #
    it "should shutdown" do
        EDJE.shutdown.should eql 2
        EDJE.shutdown.should eql 1
        EDJE.shutdown.should eql 0
    end
    #
end