To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorVswitch.all
- Background
-
- Given
-
I run
phut -v
interactively
- Scenarios
-
- Vswitch.all #=> []
-
- When
- I type "Vswitch.all"
- Then
- the output should contain "[]"
- Vswitch.all #=> [aVswitch]
-
- Given
- I type "Vswitch.create(name: 'firewall', dpid: 0xabc)"
- When
- I type "Vswitch.all"
- Then
-
the output should contain:
[#<Vswitch name: "firewall", dpid: 0xabc, openflow_version: "1.0", bridge: "vsw_firewall">]
- Vswitch.all #=> [aVswitch]
-
- Given
- I type "Vswitch.create(dpid: 0xabc)"
- When
- I type "Vswitch.all"
- Then
-
the output should contain:
[#<Vswitch name: "0xabc", dpid: 0xabc, openflow_version: "1.0", bridge: "vsw_0xabc">]
Last published about 6 years ago by Yasuhito Takamiya.