nushell/tests/repl
Bahex a0d7c1a4fd
Add SyntaxShape::OneOf syntax users can use (#15646)
# Description
Built-in commands can have parameter of `SyntaxShape::OneOf`.
This PR changes `OneOf`'s string representation and gives users the
ability to use it in definitions.

> _Syntax updated after discussion on discord._

```nushell
def foo [
    param: oneof<binary, string>
] { .. }
```
```
Usage:
  > foo <param> 

Flags:
  -h, --help: Display the help message for this command

Parameters:
  param <oneof<binary, string>>

Input/output types:
  ╭───┬───────┬────────╮
  │ # │ input │ output │
  ├───┼───────┼────────┤
  │ 0 │ any   │ any    │
  ╰───┴───────┴────────╯
```

<details><summary>Previous iterations</summary>
<p>

> ```nushell
> def foo [
>     param: (binary | string)
> ] { .. }
> ```

> ---
>
> ```nushell
> def foo [
>     param: one_of(binary, string)
> ] { .. }
> ```

</p>
</details> 


# User-Facing Changes

# Tests + Formatting
Added some test cases.

- 🟢 toolkit fmt
- 🟢 toolkit clippy
- 🟢 toolkit test
- 🟢 toolkit test stdlib

# After Submitting
- Update the website to include the new syntax
[here](https://github.com/nushell/nushell.github.io/blob/main/book/custom_commands.md)
- Update [tree-sitter-nu](https://github.com/nushell/tree-sitter-nu)
- Update `std` and `std-rfc` where applicable

---------

Co-authored-by: Bahex <17417311+Bahex@users.noreply.github.com>
2025-05-07 15:43:01 -05:00
..
mod.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_bits.rs Rename/deprecate into bits to format bits (#14634) 2024-12-28 22:49:25 +01:00
test_cell_path.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_commandline.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_conditionals.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_config_path.rs bump the rust toolchain to 1.83.0 (#15148) 2025-02-20 16:34:09 -06:00
test_config.rs Improve and fix filesize formatting/display (#14397) 2025-01-22 22:24:51 -08:00
test_converters.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_custom_commands.rs run ensure_flag_arg_type for short flag values (#14074) 2024-10-20 23:12:57 +02:00
test_engine.rs Rename/deprecate range to slice (#14825) 2025-01-17 06:21:32 -06:00
test_env.rs Allow both NU_PLUGIN_DIRS const and env at the same time (#14553) 2024-12-11 11:41:06 -06:00
test_help.rs Remove superfluous separator when there's no flag description/comment (#14007) 2024-10-05 15:19:26 +02:00
test_hiding.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_ide.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_iteration.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_known_external.rs Make parsing for unknown args in known externals like normal external calls (#13414) 2024-07-21 01:32:36 -07:00
test_math.rs Fix bugs and UB in bit shifting ops (#13663) 2024-08-22 11:54:27 +02:00
test_modules.rs fix(parser): namespace pollution of constants by use module.nu (#15518) 2025-05-01 09:47:16 -05:00
test_parser.rs Improve and fix filesize formatting/display (#14397) 2025-01-22 22:24:51 -08:00
test_ranges.rs Rework operator type errors (#14429) 2025-02-12 20:03:40 -08:00
test_regex.rs Rework operator type errors (#14429) 2025-02-12 20:03:40 -08:00
test_signatures.rs Add SyntaxShape::OneOf syntax users can use (#15646) 2025-05-07 15:43:01 -05:00
test_spread.rs Fix spread operator lexing in records (#15023) 2025-02-11 09:51:34 -05:00
test_stdlib.rs Improves startup time when using std-lib (#13842) 2024-10-03 06:28:22 -05:00
test_strings.rs Rework operator type errors (#14429) 2025-02-12 20:03:40 -08:00
test_table_operations.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_type_check.rs Rework operator type errors (#14429) 2025-02-12 20:03:40 -08:00
tests.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00