Skip to content

Commit

Permalink
fix test file names
Browse files Browse the repository at this point in the history
  • Loading branch information
simerplaha committed Jan 20, 2025
1 parent 8746c0d commit 8183afe
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import org.scalatest.OptionValues._

class AnnotationSpec extends AnyWordSpec with Matchers {
class AnnotationParserSpec extends AnyWordSpec with Matchers {

"error cases" should {
"report missing identifier" in {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import org.alephium.ralph.lsp.access.util.TestCodeUtil._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class AssignmentSpec extends AnyWordSpec with Matchers {
class AssignmentParserSpec extends AnyWordSpec with Matchers {

"assignments to an identifier" should {
"report ExpressionExpected" when {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import org.scalatest.OptionValues._

class BStringSpec extends AnyWordSpec with Matchers {
class BStringParserSpec extends AnyWordSpec with Matchers {

"b alone" should {
"not parse as String literal" in {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import org.alephium.ralph.lsp.access.util.TestCodeUtil._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class CommentSpec extends AnyWordSpec with Matchers {
class CommentParserSpec extends AnyWordSpec with Matchers {

"no text comment" should {
"store empty comment" in {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import org.scalatest.OptionValues._

class GroupSpec extends AnyWordSpec with Matchers {
class GroupParserSpec extends AnyWordSpec with Matchers {

"missing opening paren" in {
val tuple =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.alephium.ralph.lsp.access.util.TestFastParse._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class IdentifierSpec extends AnyWordSpec with Matchers {
class IdentifierParserSpec extends AnyWordSpec with Matchers {

"disallow reserved tokens to be used as identifier" when {
val reserved =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import org.scalatest.OptionValues._

class MutableBindingSpec extends AnyWordSpec with Matchers {
class MutableBindingParserSpec extends AnyWordSpec with Matchers {

"succeed" when {
"an identifier is set a mut" in {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.scalatest.TryValues.convertTryToSuccessOrFailure

import scala.util.Try

class VariableDeclarationSpec extends AnyWordSpec with Matchers {
class VariableDeclarationParserSpec extends AnyWordSpec with Matchers {

"succeed" when {
"full valid variable declaration is defined" in {
Expand Down

0 comments on commit 8183afe

Please sign in to comment.