Sha256: d950688ff003441a082bf4e1c0931f6490d02095e2c625b6dcf2a96f43b64886

Contents?: true

Size: 797 Bytes

Versions: 23

Compression:

Stored size: 797 Bytes

Contents

Feature: up command

  In order to restart killed processes
  As a developer using Trema
  I want to execute "trema up" command

  Background:
    Given a file named "switch_monitor.conf" with:
      """
      vswitch { datapath_id 0x1 }
      vswitch { datapath_id 0x2 }
      vswitch { datapath_id 0x3 }

      vhost "host1"
      vhost "host2"
      vhost "host3"

      link "0x1", "host1"
      link "0x2", "host2"
      link "0x3", "host3"
      """
    And I successfully run `trema run ../../src/examples/switch_monitor/switch-monitor.rb -c switch_monitor.conf -d`
    And I run `trema kill 0x1 0x2 0x3`
    And I run `trema kill host1 host2 host3`

  @slow_process
  Scenario: up a switch
    When I run `trema up 0x1`
    Then the vswitch "0x1" is running

  @wip
  Scenario: up a host

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trema-0.4.6 features/trema_commands/up.feature
trema-0.4.5 features/trema_commands/up.feature
trema-0.4.4 features/trema_commands/up.feature
trema-0.4.3 features/trema_commands/up.feature
trema-0.4.2 features/trema_commands/up.feature
trema-0.4.1 features/trema_commands/up.feature
trema-0.4.0 features/trema_commands/up.feature
trema-0.3.21 features/trema_commands/up.feature
trema-0.3.20 features/trema_commands/up.feature
trema-0.3.19 features/trema_commands/up.feature
trema-0.3.18 features/trema_commands/up.feature
trema-0.3.17 features/trema_commands/up.feature
trema-0.3.16 features/trema_commands/up.feature
trema-0.3.15 features/trema_commands/up.feature
trema-0.3.14 features/trema_commands/up.feature
trema-0.3.13 features/trema_commands/up.feature
trema-0.3.12 features/trema_commands/up.feature
trema-0.3.11 features/trema_commands/up.feature
trema-0.3.10 features/trema_commands/up.feature
trema-0.3.9 features/trema_commands/up.feature