mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-23 07:32:26 +03:00
20 lines
276 B
Fish
20 lines
276 B
Fish
|
# RUN: %fish %s
|
||
|
|
||
|
function _rustc
|
||
|
_tide_decolor (_tide_item_rustc)
|
||
|
end
|
||
|
|
||
|
set -l rustcir ~/rustcest
|
||
|
mkdir -p $rustcir
|
||
|
cd $rustcir
|
||
|
|
||
|
mock rustc --version "echo rustc 1.30.0"
|
||
|
set -lx tide_rustcicon
|
||
|
|
||
|
_rustc# CHECK:
|
||
|
|
||
|
touch Cargo.toml
|
||
|
_rustc# CHECK: 1.30.0
|
||
|
|
||
|
rm -r $rustcir
|