Displaying 2 results from an estimated 2 matches for "cliient".
Did you mean:
  client
  
2013 Aug 13
1
samba 4 and roaming profiles
...indows winxp clients point to a 
"username" folder on the server, while the windows7 clients point to a 
"username.V2" folder.
This is an issue due to the different types of roaming profiles in 
different windows versions (xp & 7).
So I need a workaround to make the windows7 cliients point to "username" 
folders.
TIA
Antonello
2006 Oct 08
9
Organizing tests and mocha expectations
I''m simultaneously getting into using Mocha and RSpec-style tests
(courtesy of the simply_bdd plugin) and I''m struggling with some
issues while trying to organize my specs/test.  Here''s a code example
illustrating the problem:
context "update cliient invalid data" do
  include ClientsControllerSpecHelper
  specify "should render edit form" do
    setup_controller
    @client = mock
    Client.expects(:find).with("1").returns(@client)
    @client.expects(:attributes=).with("attributes")
    @client.expects(:...