summaryrefslogtreecommitdiffstats
path: root/spec/edje_spec.rb
blob: 56cb7c0e2b49a66f0f76fb298af2c0ba8664d6ac (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 'efl/edje'
#
describe Efl::Edje do
    #
    before(:all) { Edje = Efl::Edje }
    #
    it "should init" do
        Edje.init.should == 1
        Edje.init.should == 2
        Edje.init.should == 3
    end
    #
    it "should shutdown" do
        Edje.shutdown.should == 2
        Edje.shutdown.should == 1
        Edje.shutdown.should == 0
    end
    #
end