You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmptyList.kt 280B

1234567891011
  1. package com.dmdirc.irctest.cases.connection.capabilities.v32
  2. import com.dmdirc.irctest.testCase
  3. val emptyList = testCase("connection.capabilities.302.empty-list") {
  4. steps {
  5. expect("CAP LS 302")
  6. send("CAP * LS :")
  7. expect("CAP END")
  8. }
  9. }