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.

Password.kt 281B

1234567891011121314
  1. package com.dmdirc.irctest.cases.connection
  2. import com.dmdirc.irctest.testCase
  3. val password = testCase("connection.password") {
  4. config {
  5. password = "This is a test"
  6. nick = "test"
  7. }
  8. steps {
  9. expect("PASS :This is a test")
  10. }
  11. }