Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 1090

Show
Ignore:
Timestamp:
12/01/03 21:33:35 (5 years ago)
Author:
nahi
Message:

* lock/unlock return self.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/soap/property.rb

    r1088 r1090  
    4949    end 
    5050    @locked = true 
     51    self 
    5152  end 
    5253 
     
    5657      key.unlock 
    5758    end 
     59    self 
    5860  end 
    5961 
  • trunk/test/soap/test_property.rb

    r1088 r1090  
    187187    end 
    188188  end 
     189 
     190  def test_lock_unlock_return 
     191    assert_equal(@prop, @prop.lock) 
     192    assert_equal(@prop, @prop.unlock) 
     193  end 
    189194end 
    190195